{"id":4533,"date":"2021-05-27T12:00:16","date_gmt":"2021-05-27T10:00:16","guid":{"rendered":"https:\/\/cinestudio.ch\/?page_id=4533"},"modified":"2021-05-27T12:00:18","modified_gmt":"2021-05-27T10:00:18","slug":"my-account","status":"publish","type":"page","link":"https:\/\/cinestudio.ch\/en\/my-account\/","title":{"rendered":"My account"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4533\" class=\"elementor elementor-4533 elementor-4490\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-e55b9ab elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"e55b9ab\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8e7a6e1\" data-id=\"8e7a6e1\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-48d7c72 elementor-widget elementor-widget-shortcode\" data-id=\"48d7c72\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div\n    id=\"tkt-user-account\"\n    class=\"tkt-wrapper\"\n    data-component=\"User\/UserAccount\"\n    data-tab=\"orders\"\n>\n    <div id=\"tkt-user-account-menu\">\n        <i class=\"tkt-icon-spinner tkt-2x tkt-spin\"><\/i>\n    <\/div>\n\n    <div id=\"tkt-user-account-content\"><\/div>\n\n    <div id=\"tkt-user-account-verify-message\" class=\"text-danger text-center\" style=\"display: none;\">\n        Your account hasn&#039;t been activated yet.<br\/>\n        <b>Please activate it by clicking on the link sent to your email address.<\/b><br \/>\n    <\/div>\n\n    <div class=\"row\">\n        <div class=\"col-md-12 text-center mt-3\">\n            <div style=\"display: none;\" class=\"text-center alert alert-info info-msg\"><\/div>\n            <div style=\"display: none;\" class=\"text-center alert alert-danger error-msg\"><\/div>\n            <div style=\"display: none;\" class=\"text-center alert alert-success success-msg\"><\/div>\n        <\/div>\n    <\/div>\n<\/div>\n\n\n<!-- Underscore.js templates used by client side -->\n<script type=\"text\/template\" id=\"tkt-user-account-menu-tpl\">\n    \n<div class=\"tkt-wrapper\">\n    <section class=\"tkt-section tkt-light-section tkt-user-account-menu-section\">\n        <div class=\"row\">\n                    <div class=\"col-6 col-sm-2\">\n                <div class=\"tkt-account-menu-entry active\">\n    <a href=\"?tab=orders\">\n        <i class=\"tkt-icon-cart-arrow-down tkt-3x\"><\/i>\n        <span>\n             My orders         <\/span>\n    <\/a>\n<\/div>\n            <\/div>\n                    <div class=\"col-6 col-sm-2\">\n                <div class=\"tkt-account-menu-entry \">\n    <a href=\"?tab=tickets\">\n        <i class=\"tkt-icon-tags tkt-3x\"><\/i>\n        <span>\n             My tickets         <\/span>\n    <\/a>\n<\/div>\n            <\/div>\n                    <div class=\"col-6 col-sm-2\">\n                <div class=\"tkt-account-menu-entry \">\n    <a href=\"?tab=votes\">\n        <i class=\"tkt-icon-star tkt-3x\"><\/i>\n        <span>\n            My votes        <\/span>\n    <\/a>\n<\/div>\n            <\/div>\n                    <div class=\"col-6 col-sm-2\">\n                <div class=\"tkt-account-menu-entry \">\n    <a href=\"?tab=profile\">\n        <i class=\"tkt-icon-address-book tkt-3x\"><\/i>\n        <span>\n            My information         <\/span>\n    <\/a>\n<\/div>\n            <\/div>\n                    <div class=\"col-6 col-sm-2\">\n                <div class=\"tkt-account-menu-entry \">\n    <a href=\"javascript:;\" class=\"logout-btn\">\n        <i class=\"tkt-icon-sign-out tkt-3x\"><\/i>\n        <span>\n            Logout        <\/span>\n    <\/a>\n<\/div>\n            <\/div>\n                <\/div>\n    <\/section>\n<\/div>\n<\/script>\n<script type=\"text\/template\" id=\"tkt-user-account-content-tpl\">\n    <%\nconst isVisibleOrder = order => {\n  let yesterday = new Date();\n  yesterday.setDate(yesterday.getDate() - 1);\n\n  let orderDate = new Date(order.created_at);\n  return (orderDate.getTime() > yesterday.getTime()) || (order.status === \"COMPLETED\");\n};\n%>\n\n<div id=\"tkt-account-content-profile\" class=\"tkt-wrapper\">\n    <div class=\"row\">\n        <div class=\"col-sm-12\">\n            <% if (!orders || orders.length == 0) { %>\n            <h3 class=\"text-info text-center mt-3\">\n                You don&#039;t have any order yet.            <\/h3>\n            <% } else { %>\n            <table class=\"table table-bordered tale-condensed table-striped table-hover\">\n                <tr>\n                    <th>#<\/th>\n                    <th>date<\/th>\n                    <th>Total price<\/th>\n                    <th>Payment<\/th>\n                    <th>Status<\/th>\n                <\/tr>\n                <% orders.reverse().filter(isVisibleOrder).map(function (order) { %>\n                <tr>\n                    <td>\n                        <b><%= order.id %><\/b>\n                    <\/td>\n                    <td>\n                        <%= order.getFormattedDate() %>\n                    <\/td>\n                    <td>\n                        <%= order.getFormattedTotal() %>\n                    <\/td>\n                    <td>\n                        <%= order.getFormattedPaymentMethod() %>\n                    <\/td>\n                    <td>\n                        <span class=\"badge badge-<%= order.getStatusColorClassname() %>\">\n                            <%= order.getFormattedStatus() %>\n                        <span>\n                    <\/td>\n                <\/tr>\n                <% }); %>\n            <\/table>\n            <% } %>\n        <\/div>\n    <\/div>\n<\/div>\n<\/script>\n<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-4533","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/cinestudio.ch\/en\/my-account\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Cinestudio | Kinoprogramme\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"My account | Cinestudio\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/cinestudio.ch\/en\/my-account\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2021-05-27T10:00:16+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-05-27T10:00:18+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"My account | Cinestudio\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#listItem\",\"name\":\"My account\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#listItem\",\"position\":2,\"name\":\"My account\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/#organization\",\"name\":\"Cinestudio\",\"description\":\"Kinoprogramme\",\"url\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/cinestudio.ch\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/Logo_400_cinestudio.png\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#organizationLogo\",\"width\":400,\"height\":242},\"image\":{\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#organizationLogo\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#webpage\",\"url\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/\",\"name\":\"My account | Cinestudio\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/my-account\\\/#breadcrumblist\"},\"datePublished\":\"2021-05-27T12:00:16+02:00\",\"dateModified\":\"2021-05-27T12:00:18+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/\",\"name\":\"Cinestudio\",\"description\":\"Kinoprogramme\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/cinestudio.ch\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"My account | Cinestudio","description":"","canonical_url":"https:\/\/cinestudio.ch\/en\/my-account\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/cinestudio.ch\/en\/my-account\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/cinestudio.ch\/en\/#listItem","position":1,"name":"Home","item":"https:\/\/cinestudio.ch\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/cinestudio.ch\/en\/my-account\/#listItem","name":"My account"}},{"@type":"ListItem","@id":"https:\/\/cinestudio.ch\/en\/my-account\/#listItem","position":2,"name":"My account","previousItem":{"@type":"ListItem","@id":"https:\/\/cinestudio.ch\/en\/#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/cinestudio.ch\/en\/#organization","name":"Cinestudio","description":"Kinoprogramme","url":"https:\/\/cinestudio.ch\/en\/","logo":{"@type":"ImageObject","url":"https:\/\/cinestudio.ch\/wp-content\/uploads\/2018\/11\/Logo_400_cinestudio.png","@id":"https:\/\/cinestudio.ch\/en\/my-account\/#organizationLogo","width":400,"height":242},"image":{"@id":"https:\/\/cinestudio.ch\/en\/my-account\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/cinestudio.ch\/en\/my-account\/#webpage","url":"https:\/\/cinestudio.ch\/en\/my-account\/","name":"My account | Cinestudio","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/cinestudio.ch\/en\/#website"},"breadcrumb":{"@id":"https:\/\/cinestudio.ch\/en\/my-account\/#breadcrumblist"},"datePublished":"2021-05-27T12:00:16+02:00","dateModified":"2021-05-27T12:00:18+02:00"},{"@type":"WebSite","@id":"https:\/\/cinestudio.ch\/en\/#website","url":"https:\/\/cinestudio.ch\/en\/","name":"Cinestudio","description":"Kinoprogramme","inLanguage":"en-US","publisher":{"@id":"https:\/\/cinestudio.ch\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Cinestudio | Kinoprogramme","og:type":"article","og:title":"My account | Cinestudio","og:url":"https:\/\/cinestudio.ch\/en\/my-account\/","article:published_time":"2021-05-27T10:00:16+00:00","article:modified_time":"2021-05-27T10:00:18+00:00","twitter:card":"summary","twitter:title":"My account | Cinestudio"},"aioseo_meta_data":{"post_id":"4533","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":{"id":"aioseo-web-page-63be32a95f7c4","slug":"web-page","graphName":"WebPage","label":"Web Page","properties":{"type":"WebPage","name":"","description":""}}},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":{"businessInfo":{"name":"","urls":{"website":"","aboutPage":"","contactPage":""},"address":{"line1":"","line2":"","zip":"","city":"","state":"","country":""},"contact":{"email":"","phone":"","fax":""},"ids":{"vatID":"","taxID":"","chamberID":""},"payment":{"priceIndication":"","currenciesAccepted":"","methodsAccepted":""},"areaServed":""},"openingHours":{"show":false,"closedLabel":"","open24h":false,"open24hLabel":"","open247":false,"use24hFormat":false,"twoSets":false,"timezone":"","hours":[]}},"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-05-27 09:59:34","updated":"2025-09-18 11:24:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cinestudio.ch\/en\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tMy account\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/cinestudio.ch\/en\/"},{"label":"My account","link":"https:\/\/cinestudio.ch\/en\/my-account\/"}],"_links":{"self":[{"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/pages\/4533","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/comments?post=4533"}],"version-history":[{"count":1,"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/pages\/4533\/revisions"}],"predecessor-version":[{"id":4538,"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/pages\/4533\/revisions\/4538"}],"wp:attachment":[{"href":"https:\/\/cinestudio.ch\/en\/wp-json\/wp\/v2\/media?parent=4533"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}