{"id":3124,"date":"2018-09-30T21:50:01","date_gmt":"2018-09-30T21:50:01","guid":{"rendered":"https:\/\/progressivewebsolutions.ca\/?p=3124"},"modified":"2018-09-30T21:50:01","modified_gmt":"2018-09-30T21:50:01","slug":"how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme","status":"publish","type":"post","link":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/","title":{"rendered":"How to change the search widget text different languages The7 WordPress Theme"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_column_text]We recently encountered a seemingly unsolved problem while building a multilingual site with The7 WordPress theme.<br \/>\nThe problem: The way the text on the header search widget is set, it is not registered as a string, and cannot be translated using WPML string translation. <a href=\"https:\/\/wpml.org\/forums\/topic\/in-the7-theme-how-can-i-translate-microwidget-text\/\" target=\"_blank\" rel=\"noopener\">See this thread<\/a> for more details.<br \/>\nOur client absolutely wanted to keep the same functionality in all languages, so hiding the text was not an option.<br \/>\nWe came up with a simple script as a solution.<br \/>\nSince our clients&#8217; primary site is in French, and the string is defined in french in the theme options, this code is designed to run when the detected site language is english. It can be adapted to work for any language, by changing the ICL language paramater in the if statement.<br \/>\nBefore starting, please make sure to have a full back up of all your website files AND database. This script should not affect anything, however we are not responsible for any data loss, and recommend being able to quickly revert back.<br \/>\nSecondly, please make sure you are running the7 theme on WordPress, with a child theme.<br \/>\nMake sure you:<br \/>\n1 &#8211; Have a full backup of your websites files and database<br \/>\n2 &#8211; Are running the7 theme with an active child theme[\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1538345104002{margin-top: 40px !important;}&#8221;][vc_column][vc_column_text]<\/p>\n<h2>Step 1<\/h2>\n<p>Copy the below code and save it within your child theme folder as dt7-lang-script-prog.js<br \/>\n&nbsp;<br \/>\nOn the line that says <code>$('#trigger-overlay').html('YOUR_TEXT');<\/code> change the &#8216;YOUR_TEXT&#8217; to the text you want displayed.[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1540724008916{margin-top: 40px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: #020202 !important;border-left-color: #f7f7f7 !important;border-left-style: solid !important;border-right-color: #f7f7f7 !important;border-right-style: solid !important;border-top-color: #f7f7f7 !important;border-top-style: solid !important;border-bottom-color: #f7f7f7 !important;border-bottom-style: solid !important;}&#8221;]<span style=\"color: #ffffff\"><code><br \/>\n\/\/ JavaScript Document<\/code><\/span><br \/>\n<span style=\"color: #ffffff\">\/\/Change the search bar text for The7 theme<\/span><br \/>\n<span style=\"color: #ffffff\">\/\/ Author: Progressive Web Solutions<\/span><br \/>\n<span style=\"color: #ffffff\">\/\/Author URL: https:\/\/progressivewebsolutions.ca<\/span><br \/>\n<span style=\"color: #ffffff\">\/\/Version 0.2<\/span><br \/>\n<span style=\"color: #ffffff\">\/\/October 28th 2018<\/span><br \/>\n<span style=\"color: #ffffff\">jQuery(function ($) {<\/span><br \/>\n<span style=\"color: #ffffff\">$(document).ready(function(e) {<\/span><br \/>\n<span style=\"color: #ffffff\">$(&#8216;#trigger-overlay&#8217;).html(&#8216;YOUR_TEXT&#8217;);<\/span><br \/>\n<span style=\"color: #ffffff\">$( &#8220;#phantom #trigger-overlay&#8221; ).html(&#8216;YOUR_TEXT&#8217;);<\/span><br \/>\n<span style=\"color: #ffffff\">});<\/span><br \/>\n<span style=\"color: #ffffff\">});<\/span>[\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1538345111175{margin-top: 40px !important;}&#8221;][vc_column][vc_column_text]<\/p>\n<h2>Step 2<\/h2>\n<p>Add this code to your functions.php file in your child theme.<br \/>\nIn the first line, change the language code to your secondary language.<br \/>\nIn the third line, change YOURDOMAIN.COM to your domain.Change YOUR_CHILD_THEME to the folder that contains the files for your child theme. Lastly change JS_FILE_LOCATION to the location within your child theme folder where you are saved the file from step 1.[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1538345236331{margin-top: 40px !important;border-top-width: 1px !important;border-right-width: 1px !important;border-bottom-width: 1px !important;border-left-width: 1px !important;padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 20px !important;padding-left: 20px !important;background-color: #020202 !important;border-left-color: #f7f7f7 !important;border-left-style: solid !important;border-right-color: #f7f7f7 !important;border-right-style: solid !important;border-top-color: #f7f7f7 !important;border-top-style: solid !important;border-bottom-color: #f7f7f7 !important;border-bottom-style: solid !important;}&#8221;]<code><br \/>\n<span style=\"color: #ffffff\">if (ICL_LANGUAGE_CODE=='en'){<\/span><br \/>\n<span style=\"color: #ffffff\">function change_dt7_search_string() {<\/span><br \/>\n<span style=\"color: #ffffff\">wp_enqueue_script( 'change-dt7-search-string', 'https:\/\/YOURDOMAIN.COM\/wp-content\/themes\/YOUR_CHILD_THEME\/JS_FILE_LOCATION\/dt7-lang-script-prog.js', array( 'jquery' ), '0.1', 'true');<\/span><br \/>\n<span style=\"color: #ffffff\">}<\/span><br \/>\n<span style=\"color: #ffffff\">add_action( 'wp_enqueue_scripts', 'change_dt7_search_string' );<\/span><br \/>\n<span style=\"color: #ffffff\">}<\/span><\/code>[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text]We recently encountered a seemingly unsolved problem while building a multilingual site with The7 WordPress theme. The problem: The way the text on the header search widget is set, it is not registered as a string, and cannot be translated using WPML string translation. See this thread for more details. Our client absolutely wanted to&hellip;<\/p>\n","protected":false},"author":1,"featured_media":631,"comment_status":"closed","ping_status":"open","sticky":false,"template":"template-microsite.php","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[21],"tags":[20,18,22],"class_list":["post-3124","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress-technical","tag-the7","tag-wordpress","tag-wpml","category-21","description-off"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to change the search widget text different languages The7 Wordpress Theme - Progressive Web Solutions | Web Design | Montreal, Quebec<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to change the search widget text different languages The7 Wordpress Theme - Progressive Web Solutions | Web Design | Montreal, Quebec\" \/>\n<meta property=\"og:description\" content=\"[vc_row][vc_column][vc_column_text]We recently encountered a seemingly unsolved problem while building a multilingual site with The7 WordPress theme. The problem: The way the text on the header search widget is set, it is not registered as a string, and cannot be translated using WPML string translation. See this thread for more details. Our client absolutely wanted to&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/\" \/>\n<meta property=\"og:site_name\" content=\"Progressive Web Solutions | Web Design | Montreal, Quebec\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-30T21:50:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-content\/uploads\/sites\/19\/2017\/10\/bg001.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1300\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"ebesso\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ebesso\" \/>\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:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/\"},\"author\":{\"name\":\"ebesso\",\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/#\\\/schema\\\/person\\\/5c253e798dd2b8afb72ed6f98d8a049d\"},\"headline\":\"How to change the search widget text different languages The7 WordPress Theme\",\"datePublished\":\"2018-09-30T21:50:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/\"},\"wordCount\":556,\"image\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/wp-content\\\/uploads\\\/sites\\\/19\\\/2017\\\/10\\\/bg001.jpg\",\"keywords\":[\"The7\",\"Wordpress\",\"WPML\"],\"articleSection\":[\"Wordpress Technical\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/\",\"url\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/\",\"name\":\"How to change the search widget text different languages The7 Wordpress Theme - Progressive Web Solutions | Web Design | Montreal, Quebec\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/wp-content\\\/uploads\\\/sites\\\/19\\\/2017\\\/10\\\/bg001.jpg\",\"datePublished\":\"2018-09-30T21:50:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/#\\\/schema\\\/person\\\/5c253e798dd2b8afb72ed6f98d8a049d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#primaryimage\",\"url\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/wp-content\\\/uploads\\\/sites\\\/19\\\/2017\\\/10\\\/bg001.jpg\",\"contentUrl\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/wp-content\\\/uploads\\\/sites\\\/19\\\/2017\\\/10\\\/bg001.jpg\",\"width\":1300,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/2018\\\/09\\\/30\\\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to change the search widget text different languages The7 WordPress Theme\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/\",\"name\":\"Progressive Web Solutions | Web Design | Montreal, Quebec\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/en\\\/#\\\/schema\\\/person\\\/5c253e798dd2b8afb72ed6f98d8a049d\",\"name\":\"ebesso\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d01ef1e26ac89c42118ca988582beb9ddf0a8aaf8c41f62309efd5577b9626a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d01ef1e26ac89c42118ca988582beb9ddf0a8aaf8c41f62309efd5577b9626a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8d01ef1e26ac89c42118ca988582beb9ddf0a8aaf8c41f62309efd5577b9626a?s=96&d=mm&r=g\",\"caption\":\"ebesso\"},\"sameAs\":[\"https:\\\/\\\/progressivewp.solutions\"],\"url\":\"https:\\\/\\\/progressivewp.solutions\\\/progressivewebsolutions\\\/author\\\/ebesso\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to change the search widget text different languages The7 Wordpress Theme - Progressive Web Solutions | Web Design | Montreal, Quebec","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:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/","og_locale":"en_US","og_type":"article","og_title":"How to change the search widget text different languages The7 Wordpress Theme - Progressive Web Solutions | Web Design | Montreal, Quebec","og_description":"[vc_row][vc_column][vc_column_text]We recently encountered a seemingly unsolved problem while building a multilingual site with The7 WordPress theme. The problem: The way the text on the header search widget is set, it is not registered as a string, and cannot be translated using WPML string translation. See this thread for more details. Our client absolutely wanted to&hellip;","og_url":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/","og_site_name":"Progressive Web Solutions | Web Design | Montreal, Quebec","article_published_time":"2018-09-30T21:50:01+00:00","og_image":[{"width":1300,"height":900,"url":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-content\/uploads\/sites\/19\/2017\/10\/bg001.jpg","type":"image\/jpeg"}],"author":"ebesso","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ebesso","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#article","isPartOf":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/"},"author":{"name":"ebesso","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/#\/schema\/person\/5c253e798dd2b8afb72ed6f98d8a049d"},"headline":"How to change the search widget text different languages The7 WordPress Theme","datePublished":"2018-09-30T21:50:01+00:00","mainEntityOfPage":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/"},"wordCount":556,"image":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-content\/uploads\/sites\/19\/2017\/10\/bg001.jpg","keywords":["The7","Wordpress","WPML"],"articleSection":["Wordpress Technical"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/","url":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/","name":"How to change the search widget text different languages The7 Wordpress Theme - Progressive Web Solutions | Web Design | Montreal, Quebec","isPartOf":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#primaryimage"},"image":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-content\/uploads\/sites\/19\/2017\/10\/bg001.jpg","datePublished":"2018-09-30T21:50:01+00:00","author":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/#\/schema\/person\/5c253e798dd2b8afb72ed6f98d8a049d"},"breadcrumb":{"@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#primaryimage","url":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-content\/uploads\/sites\/19\/2017\/10\/bg001.jpg","contentUrl":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-content\/uploads\/sites\/19\/2017\/10\/bg001.jpg","width":1300,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/2018\/09\/30\/how-to-change-the-search-widget-text-different-languages-the7-wordpress-theme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/"},{"@type":"ListItem","position":2,"name":"How to change the search widget text different languages The7 WordPress Theme"}]},{"@type":"WebSite","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/#website","url":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/","name":"Progressive Web Solutions | Web Design | Montreal, Quebec","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/en\/#\/schema\/person\/5c253e798dd2b8afb72ed6f98d8a049d","name":"ebesso","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8d01ef1e26ac89c42118ca988582beb9ddf0a8aaf8c41f62309efd5577b9626a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8d01ef1e26ac89c42118ca988582beb9ddf0a8aaf8c41f62309efd5577b9626a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d01ef1e26ac89c42118ca988582beb9ddf0a8aaf8c41f62309efd5577b9626a?s=96&d=mm&r=g","caption":"ebesso"},"sameAs":["https:\/\/progressivewp.solutions"],"url":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/author\/ebesso\/"}]}},"_links":{"self":[{"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/posts\/3124","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/comments?post=3124"}],"version-history":[{"count":0,"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/posts\/3124\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/media\/631"}],"wp:attachment":[{"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/media?parent=3124"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/categories?post=3124"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/progressivewp.solutions\/progressivewebsolutions\/wp-json\/wp\/v2\/tags?post=3124"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}