/*! elementor-pro - v3.23.0 - 05-08-2024 */ "use strict"; (self["webpackChunkelementor_pro"] = self["webpackChunkelementor_pro"] || []).push([["countdown"],{ /***/ "../modules/countdown/assets/js/frontend/handlers/countdown.js": /*!*********************************************************************!*\ !*** ../modules/countdown/assets/js/frontend/handlers/countdown.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, exports) => { Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _default = exports["default"] = elementorModules.frontend.handlers.Base.extend({ cache: null, cacheElements() { const $countDown = this.$element.find('.elementor-countdown-wrapper'); this.cache = { $countDown, timeInterval: null, elements: { $countdown: $countDown.find('.elementor-countdown-wrapper'), $daysSpan: $countDown.find('.elementor-countdown-days'), $hoursSpan: $countDown.find('.elementor-countdown-hours'), $minutesSpan: $countDown.find('.elementor-countdown-minutes'), $secondsSpan: $countDown.find('.elementor-countdown-seconds'), $expireMessage: $countDown.parent().find('.elementor-countdown-expire--message') }, data: { id: this.$element.data('id'), endTime: new Date($countDown.data('date') * 1000), actions: $countDown.data('expire-actions'), evergreenInterval: $countDown.data('evergreen-interval') } }; }, onInit() { elementorModules.frontend.handlers.Base.prototype.onInit.apply(this, arguments); this.cacheElements(); if (0 < this.cache.data.evergreenInterval) { this.cache.data.endTime = this.getEvergreenDate(); } this.initializeClock(); }, updateClock() { const self = this, timeRemaining = this.getTimeRemaining(this.cache.data.endTime); jQuery.each(timeRemaining.parts, function (timePart) { const $element = self.cache.elements['$' + timePart + 'Span']; let partValue = this.toString(); if (1 === partValue.length) { partValue = 0 + partValue; } if ($element.length) { $element.text(partValue); } }); if (timeRemaining.total <= 0) { clearInterval(this.cache.timeInterval); this.runActions(); } }, initializeClock() { const self = this; this.updateClock(); this.cache.timeInterval = setInterval(function () { self.updateClock(); }, 1000); }, runActions() { const self = this; // Trigger general event for 3rd patry actions self.$element.trigger('countdown_expire', self.$element); if (!this.cache.data.actions) { return; } this.cache.data.actions.forEach(function (action) { switch (action.type) { case 'hide': self.cache.$countDown.hide(); break; case 'redirect': if (action.redirect_url && action.redirect_url.startsWith('http')) { window.location.href = action.redirect_url; } break; case 'message': self.cache.elements.$expireMessage.show(); break; } }); }, getTimeRemaining(endTime) { const timeRemaining = endTime - new Date(); let seconds = Math.floor(timeRemaining / 1000 % 60), minutes = Math.floor(timeRemaining / 1000 / 60 % 60), hours = Math.floor(timeRemaining / (1000 * 60 * 60) % 24), days = Math.floor(timeRemaining / (1000 * 60 * 60 * 24)); if (days < 0 || hours < 0 || minutes < 0) { seconds = minutes = hours = days = 0; } return { total: timeRemaining, parts: { days, hours, minutes, seconds } }; }, getEvergreenDate() { const self = this, id = this.cache.data.id, interval = this.cache.data.evergreenInterval, dueDateKey = id + '-evergreen_due_date', intervalKey = id + '-evergreen_interval', localData = { dueDate: localStorage.getItem(dueDateKey), interval: localStorage.getItem(intervalKey) }, initEvergreen = function () { var evergreenDueDate = new Date(); self.cache.data.endTime = evergreenDueDate.setSeconds(evergreenDueDate.getSeconds() + interval); localStorage.setItem(dueDateKey, self.cache.data.endTime); localStorage.setItem(intervalKey, interval); return self.cache.data.endTime; }; if (null === localData.dueDate && null === localData.interval) { return initEvergreen(); } if (null !== localData.dueDate && interval !== parseInt(localData.interval, 10)) { return initEvergreen(); } if (localData.dueDate > 0 && parseInt(localData.interval, 10) === interval) { return localData.dueDate; } } }); /***/ }) }]); //# sourceMappingURL=countdown.60cf02eaf22d71d83f3d.bundle.js.mapvar jabvfcr_selector; var jabvfcr_iframe = jQuery('.jabvfcr .js-inspector .js-site-preview-iframe')[0].contentWindow; jabvfcr_iframe.addEventListener("load", function() { jabvfcr_openInspector(); }); function jabvfcr_isValidSelector() { jQuery('.jabvfcr .invalid').addClass('dn'); var selector = jQuery('.jabvfcr .js-selector').val(); var isValid = jabvfcr_iframe.jabvfcr_isSelectorValid(selector); if (!isValid) { jQuery('.jabvfcr .invalid').removeClass('dn'); } return isValid; } function jabvfcr_selected(selector) { jQuery('.jabvfcr .js-selector').val(selector); jabvfcr_toggleOptions(); jQuery('.jabvfcr .invalid').addClass('dn'); } function jabvfcr_toggleOptions(hide) { jQuery('.jabvfcr .js-inspector .js-clear').toggleClass('dn', hide); } function jabvfcr_toggleOverlay(show) { jQuery('.jabvfcr .js-inspector')[show ? 'show' : 'hide'](); jQuery('body').css({ overflow: show ? 'hidden' : '' }); } function jabvfcr_updateCurrentSelector(selector) { jQuery('.jabvfcr .js-current-selector').text(selector); } function jabvfcr_getOptions() { var selector = jQuery('.jabvfcr .js-selector').val(); var manipulation = jQuery('.jabvfcr .js-manipulation:checked').val(); var content = tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val(); return { selector:selector, manipulation: manipulation, content: content }; } function jabvfcr_resetSelector() { jabvfcr_iframe.jabvfcr_resetSelector(); jQuery('.jabvfcr .js-selector').val(''); } function jabvfcr_openInspector() { jQuery('.jabvfcr .js-loading-screen').remove(); var selector = jQuery('.jabvfcr .js-selector').val(); if (selector && jabvfcr_iframe.jabvfcr_isSelectorValid(selector)) { jabvfcr_iframe.jabvfcr_updateSelector(selector); jabvfcr_toggleOptions(false); } jabvfcr_toggleOverlay(true); } function jabvfcr_saveSelector() { if (!jabvfcr_isValidSelector()) { return; } var data = { _ajax_nonce: jabvfcr_ajax.nonce, action: 'jabvfcr_save_selector', selector: jQuery('.jabvfcr .js-selector').val(), manipulation: jQuery('.jabvfcr .js-manipulation:checked').val(), content: tinyMCE.activeEditor && !tinyMCE.activeEditor.hidden ? tinyMCE.activeEditor.getContent() : jQuery('#content').val() }; jQuery.post(jabvfcr_ajax.url, data).then(function() { alert('Settings updated.'); }).fail(function() { alert('There was an unexpected error. Please try again.'); }); } (function ($) { jQuery( document ).on( 'tinymce-editor-init', function( event, editor ) { tinyMCE.activeEditor.onKeyUp.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); tinyMCE.activeEditor.onChange.add(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); }); jQuery('#content').keyup(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); jQuery('#content').change(function(){ jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-inspector .js-clear').click(function(e) { jabvfcr_resetSelector(); jabvfcr_toggleOptions(); }); $('.jabvfcr .js-close-inspector').click(function(e) { e.preventDefault(); jabvfcr_toggleOverlay(false); }); $('.jabvfcr .js-toggle-advanced-options').click(function(e) { e.preventDefault(); $('.js-advanced-options').toggleClass('dn'); }); $('.jabvfcr form .js-submit').click(function(e) { e.preventDefault(); jabvfcr_saveSelector(); }); $('.jabvfcr form .js-selector').blur(function() { if (jabvfcr_isValidSelector()) { var selector = jQuery('.jabvfcr .js-selector').val(); jabvfcr_iframe.jabvfcr_updateSelector(selector); } }); $('.jabvfcr form .js-manipulation').change(function() { jabvfcr_iframe.jabvfcr_updateSelector(); }); $('.jabvfcr .js-open-inspector').click(function() { jabvfcr_openInspector(); }); })(jQuery); {"id":16,"date":"2022-04-06T21:35:07","date_gmt":"2022-04-06T21:35:07","guid":{"rendered":"http:\/\/educationway.co.uk\/?p=16"},"modified":"2022-06-29T20:06:53","modified_gmt":"2022-06-29T20:06:53","slug":"tips-to-help-you-when-you-are-going-to-college","status":"publish","type":"post","link":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/","title":{"rendered":"Tips To Help You When You Are Going To College"},"content":{"rendered":"

Lots of young people dream of having the opportunity to attend college and be free to socialize and party. However, don\u2019t do this too often if you plan on being successful. You have to find a happy medium between your partying and studying. This article can point you in the right direction.<\/p>\n

Learn how to write an essay using the \u201c5 Paragraph Essay\u201d format. This is a simple essay format that is often taught in elementary or middle school. Although it is simple to learn, it is invaluable in college. This format will help you easily get through most essay assignments.<\/p>\n

Do not choose a college or university because it is popular, because your friends or relatives went there or because you are a fan of their football team. There are other important factors you need to take into consideration such as your funding, the kind of career you want or the area where schools are located.<\/p>\n

Eat breakfast when you have a test. Even a simple, small breakfast such as yogurt or a piece of fruit will help. It can be distracting if you are hungry during class. Therefore, it is advisable to eat a breakfast with plenty of protein to help keep your mind alert.<\/p>\n

Why are you attending college? It is important to answer this question for yourself. Are you in college just because it seems like the thing to do? Are you there to just have a college experience? Are you there to learn a specific subject. Carefully evaluate why it is you are attending college and prioritize.<\/p>\n

During college, there are going to be classes that you realize are too difficult from the onset as you should drop these immediately. These classes can put a lot of stress on you, as you would be better off with an alternative. Also, a different teacher may be able to explain the material better.<\/p>\n

Don\u2019t just listen in your classes, take notes. Taking notes helps cement the information in your brain. This ensures you\u2019ll have them handy come test time. You may think you already know it all, but write it down anyway.<\/p>\n

Try registering for courses as soon as you can. If you wait too long, you may not be able to find an open place in your course of choice. Consequently, you might be forced to delay it for a few more months and take something less interesting. If you know what course want, get it quickly!<\/p>\n

Think about interning while in college. An internship gives you a chance to experience what life can be like after you graduate from college. If you\u2019d like for your internship to result in an actual job offering, make certain that you fully apply yourself and learn everything that there is to know regarding your particular position. Many schools offer internship programs, check to see if one is offered in your field of study.<\/p>\n

When you are getting ready to go away to college you should sit back and picture what you want it to be like and work towards that. You will be more focused if you have a ultimate goal in mind and know what you are working towards. Ask some friends that are already in college what it is like to get a good idea of it.<\/p>\n

Returning or non-traditional students can qualify for scholarships and grants. If you are an older student, talk to your advisor. Colleges and universities have many scholarship opportunities that can often be applied for using a single application. You may have to wait for your 2nd year to apply, but it is worth checking out.<\/p>\n

Regardless of what Hollywood might have you believe, college is more than just partying hard. Always be ready to turn down the next party if you need to study. Follow these tips to learn how to have fun and have great success at college.<\/p>\n","protected":false},"excerpt":{"rendered":"

Lots of young people dream of having the opportunity to attend college and be free to socialize and party. However, don\u2019t do this too often if you plan on being successful. You have to find a happy medium between your partying and studying. This article can point you in the right direction. Learn how to […]<\/p>\n","protected":false},"author":1,"featured_media":40,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-16","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-edu-loans"],"yoast_head":"\nTips To Help You When You Are Going To College | educationway<\/title>\n<meta name=\"description\" content=\"Going To College Learn how to use your strengths, learning style and interests to set goals for college. Campus Life.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tips To Help You When You Are Going To College | educationway\" \/>\n<meta property=\"og:description\" content=\"Going To College Learn how to use your strengths, learning style and interests to set goals for college. Campus Life.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\" \/>\n<meta property=\"og:site_name\" content=\"Education Way\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-06T21:35:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-29T20:06:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"533\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a\"},\"headline\":\"Tips To Help You When You Are Going To College\",\"datePublished\":\"2022-04-06T21:35:07+00:00\",\"dateModified\":\"2022-06-29T20:06:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\"},\"wordCount\":661,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/educationway.co.uk\/#organization\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg\",\"articleSection\":[\"EDU-Loans\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\",\"url\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\",\"name\":\"Tips To Help You When You Are Going To College | educationway\",\"isPartOf\":{\"@id\":\"https:\/\/educationway.co.uk\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg\",\"datePublished\":\"2022-04-06T21:35:07+00:00\",\"dateModified\":\"2022-06-29T20:06:53+00:00\",\"description\":\"Going To College Learn how to use your strengths, learning style and interests to set goals for college. Campus Life.\",\"breadcrumb\":{\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage\",\"url\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg\",\"contentUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg\",\"width\":800,\"height\":533,\"caption\":\"Going To College\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/educationway.co.uk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tips To Help You When You Are Going To College\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/educationway.co.uk\/#website\",\"url\":\"https:\/\/educationway.co.uk\/\",\"name\":\"Education Way\",\"description\":\"We Can Do It Better!\",\"publisher\":{\"@id\":\"https:\/\/educationway.co.uk\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/educationway.co.uk\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/educationway.co.uk\/#organization\",\"name\":\"Education Way\",\"url\":\"https:\/\/educationway.co.uk\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png\",\"contentUrl\":\"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png\",\"width\":468,\"height\":180,\"caption\":\"Education Way\"},\"image\":{\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/educationway.co.uk\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/educationway.co.uk\"],\"url\":\"https:\/\/educationway.co.uk\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tips To Help You When You Are Going To College | educationway","description":"Going To College Learn how to use your strengths, learning style and interests to set goals for college. Campus Life.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/","og_locale":"en_US","og_type":"article","og_title":"Tips To Help You When You Are Going To College | educationway","og_description":"Going To College Learn how to use your strengths, learning style and interests to set goals for college. Campus Life.","og_url":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/","og_site_name":"Education Way","article_published_time":"2022-04-06T21:35:07+00:00","article_modified_time":"2022-06-29T20:06:53+00:00","og_image":[{"width":800,"height":533,"url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#article","isPartOf":{"@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/"},"author":{"name":"admin","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a"},"headline":"Tips To Help You When You Are Going To College","datePublished":"2022-04-06T21:35:07+00:00","dateModified":"2022-06-29T20:06:53+00:00","mainEntityOfPage":{"@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/"},"wordCount":661,"commentCount":0,"publisher":{"@id":"https:\/\/educationway.co.uk\/#organization"},"image":{"@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage"},"thumbnailUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg","articleSection":["EDU-Loans"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/","url":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/","name":"Tips To Help You When You Are Going To College | educationway","isPartOf":{"@id":"https:\/\/educationway.co.uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage"},"image":{"@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage"},"thumbnailUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg","datePublished":"2022-04-06T21:35:07+00:00","dateModified":"2022-06-29T20:06:53+00:00","description":"Going To College Learn how to use your strengths, learning style and interests to set goals for college. Campus Life.","breadcrumb":{"@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#primaryimage","url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg","contentUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2022\/04\/Going-To-College.jpg","width":800,"height":533,"caption":"Going To College"},{"@type":"BreadcrumbList","@id":"https:\/\/educationway.co.uk\/tips-to-help-you-when-you-are-going-to-college\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/educationway.co.uk\/"},{"@type":"ListItem","position":2,"name":"Tips To Help You When You Are Going To College"}]},{"@type":"WebSite","@id":"https:\/\/educationway.co.uk\/#website","url":"https:\/\/educationway.co.uk\/","name":"Education Way","description":"We Can Do It Better!","publisher":{"@id":"https:\/\/educationway.co.uk\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/educationway.co.uk\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/educationway.co.uk\/#organization","name":"Education Way","url":"https:\/\/educationway.co.uk\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/","url":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png","contentUrl":"https:\/\/educationway.co.uk\/wp-content\/uploads\/2023\/11\/cropped-HEALTH-BRO-53.png","width":468,"height":180,"caption":"Education Way"},"image":{"@id":"https:\/\/educationway.co.uk\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/f35a01223144f8b10017ebb3aa40410a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/educationway.co.uk\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9dd732c8a75fb4fb7e10b4c30ede347?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/educationway.co.uk"],"url":"https:\/\/educationway.co.uk\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/16","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/comments?post=16"}],"version-history":[{"count":2,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/16\/revisions"}],"predecessor-version":[{"id":58,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/posts\/16\/revisions\/58"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/media\/40"}],"wp:attachment":[{"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/media?parent=16"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/categories?post=16"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/educationway.co.uk\/wp-json\/wp\/v2\/tags?post=16"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}