CINXE.COM

Support – Jetpack

<!DOCTYPE html> <!--[if lt IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7 with-jpcom-banner" lang="en"> <![endif]--> <!--[if IE 7]><html class="no-js lt-ie10 lt-ie9 lt-ie8 with-jpcom-banner" lang="en"> <![endif]--> <!--[if IE 8]><html class="no-js lt-ie10 lt-ie9 with-jpcom-banner" lang="en"> <![endif]--> <!--[if IE 9]><html class="no-js lt-ie10 with-jpcom-banner" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="en" class="no-js with-jpcom-banner"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="author" content="WordPress.com / Automattic Inc."> <meta name="viewport" content="width=device-width"> <title>Support &#8211; Jetpack</title> <meta name='robots' content='max-image-preview:large' /> <meta name="google-site-verification" content="gprBhnJ5dQ2j8I3RU2MexFOZp5a6Ty3tLmUpKk4cbPg" /> <!-- Async WordPress.com Remote Login --> <script id="wpcom_remote_login_js"> var wpcom_remote_login_extra_auth = ''; function wpcom_remote_login_remove_dom_node_id( element_id ) { var dom_node = document.getElementById( element_id ); if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); } } function wpcom_remote_login_remove_dom_node_classes( class_name ) { var dom_nodes = document.querySelectorAll( '.' + class_name ); for ( var i = 0; i < dom_nodes.length; i++ ) { dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] ); } } function wpcom_remote_login_final_cleanup() { wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" ); wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" ); wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" ); wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" ); } // Watch for messages back from the remote login window.addEventListener( "message", function( e ) { if ( e.origin === "https://r-login.wordpress.com" ) { var data = {}; try { data = JSON.parse( e.data ); } catch( e ) { wpcom_remote_login_final_cleanup(); return; } if ( data.msg === 'LOGIN' ) { // Clean up the login check iframe wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" ); var id_regex = new RegExp( /^[0-9]+$/ ); var token_regex = new RegExp( /^.*|.*|.*$/ ); if ( token_regex.test( data.token ) && id_regex.test( data.wpcomid ) ) { // We have everything we need to ask for a login var script = document.createElement( "script" ); script.setAttribute( "id", "wpcom_remote_login_validate" ); script.src = '/remote-login.php?wpcom_remote_login=validate' + '&wpcomid=' + data.wpcomid + '&token=' + encodeURIComponent( data.token ) + '&host=' + window.location.protocol + '//' + window.location.hostname + '&postid=315869' + '&is_singular='; document.body.appendChild( script ); } return; } // Safari ITP, not logged in, so redirect if ( data.msg === 'LOGIN-REDIRECT' ) { window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href; return; } // Safari ITP, storage access failed, remove the request if ( data.msg === 'LOGIN-REMOVE' ) { var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }'; var style_zap = document.createElement( 'style' ); style_zap.type = 'text/css'; style_zap.appendChild( document.createTextNode( css_zap ) ); document.body.appendChild( style_zap ); var e = document.getElementById( 'wpcom_request_access_iframe' ); e.parentNode.removeChild( e ); document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000'; return; } // Safari ITP if ( data.msg === 'REQUEST_ACCESS' ) { console.log( 'request access: safari' ); // Check ITP iframe enable/disable knob if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) { return; } // If we are in a "private window" there is no ITP. var private_window = false; try { var opendb = window.openDatabase( null, null, null, null ); } catch( e ) { private_window = true; } if ( private_window ) { console.log( 'private window' ); return; } var iframe = document.createElement( 'iframe' ); iframe.id = 'wpcom_request_access_iframe'; iframe.setAttribute( 'scrolling', 'no' ); iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' ); iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid ); var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } '; var style = document.createElement( 'style' ); style.type = 'text/css'; style.id = 'wpcom_request_access_styles'; style.appendChild( document.createTextNode( css ) ); document.body.appendChild( style ); document.body.appendChild( iframe ); } if ( data.msg === 'DONE' ) { wpcom_remote_login_final_cleanup(); } } }, false ); // Inject the remote login iframe after the page has had a chance to load // more critical resources window.addEventListener( "DOMContentLoaded", function( e ) { var iframe = document.createElement( "iframe" ); iframe.style.display = "none"; iframe.setAttribute( "scrolling", "no" ); iframe.setAttribute( "id", "wpcom_remote_login_key" ); iframe.src = "https://r-login.wordpress.com/remote-login.php" + "?wpcom_remote_login=key" + "&origin=aHR0cHM6Ly9qZXRwYWNrLmNvbQ%3D%3D" + "&wpcomid=20115252" + "&time=1732630028"; document.body.appendChild( iframe ); }, false ); </script> <link rel='dns-prefetch' href='//s0.wp.com' /> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//s2.wp.com' /> <link rel='dns-prefetch' href='//s1.wp.com' /> <link rel='dns-prefetch' href='//jetpackme.wordpress.com' /> <link rel="alternate" type="application/rss+xml" title="Jetpack &raquo; Feed" href="https://jetpack.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="Jetpack &raquo; Comments Feed" href="https://jetpack.com/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Jetpack &raquo; Support Feed" href="https://jetpack.com/support/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function () { oldonload(); func(); } } } /* ]]> */ </script> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s2.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1719498190i&ver=6.8-alpha-59438"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='https://s0.wp.com/_static/??-eJylzksOwjAMBNALkVoRLVUXiLPkYwWDm1aOA/T2VFTsYNWlZzRPhudswpQVs8LMNVEukOp6epS0NoLwsENzalrwlTiC5yncDZMXJwsUXRibUMoB9kF6xfE/5FpnZieaUUwkwaDTutmcb85UlHIyH3d7zFCO+NqlRlRHXH6rl/Fs+6Mdura33e0Na+N59Q==&cssminify=yes' type='text/css' media='all' /> <style id='wp-block-library-inline-css'> .has-text-align-justify { text-align:justify; } .has-text-align-justify{text-align:justify;} .wp-block-paragraph.is-style-jetpack-with-antispam-icon::before { width: 28px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04LjQ1NDc0IDIxLjIwNjlMMTYuNDU0NyAzLjcwNjlMMTUuNTQ1MyAzLjI5MTE0TDE0LjI4MzcgNi4wNTA4MUMxMy41OTkxIDUuNjk4NzMgMTIuODIyOCA1LjQ5OTk5IDEyIDUuNDk5OTlDMTAuOTM4NSA1LjQ5OTk5IDkuOTU0MzEgNS44MzA3NiA5LjE0NDggNi4zOTQ4NUw3LjE4OTk0IDQuNDRMNi4xMjkyOCA1LjUwMDY2TDguMDU1NTYgNy40MjY5NEM3LjQ5MDQ0IDguMTUxMjcgNy4xMjA0NyA5LjAzNTMgNy4wMjQ2OSA5Ljk5OTk5SDVWMTEuNUg3VjEzSDVWMTQuNUg3LjEwMDAyQzcuMzUwODkgMTUuNzM1OSA4LjA1NzYgMTYuODA2MiA5LjAzNzAzIDE3LjUyNzlMNy41NDUyNiAyMC43OTExTDguNDU0NzQgMjEuMjA2OVpNOS42ODAyNCAxNi4xMjA5QzguOTU2MzMgMTUuNDc5NiA4LjUgMTQuNTQzMSA4LjUgMTMuNVYxMC41QzguNSA4LjU2NyAxMC4wNjcgNi45OTk5OSAxMiA2Ljk5OTk5QzEyLjYwMDMgNi45OTk5OSAxMy4xNjUzIDcuMTUxMTEgMTMuNjU5IDcuNDE3MzhMOS42ODAyNCAxNi4xMjA5Wk0xNS4zNTU1IDkuNTAxNTVMMTYuMTY0NSA3LjczMTkxQzE2LjYwNTMgOC4zOTM4MyAxNi44OTI2IDkuMTY2ODMgMTYuOTc1MyA5Ljk5OTk5SDE5VjExLjVIMTdWMTNIMTlWMTQuNUgxNi45QzE2LjQzNjcgMTYuNzgyMiAxNC40MTkgMTguNSAxMiAxOC41QzExLjc1MDggMTguNSAxMS41MDU4IDE4LjQ4MTggMTEuMjY2NCAxOC40NDY2TDExLjkyOCAxNi45OTkzQzExLjk1MTkgMTYuOTk5OCAxMS45NzU5IDE3IDEyIDE3QzEzLjkzMyAxNyAxNS41IDE1LjQzMyAxNS41IDEzLjVWMTAuNUMxNS41IDEwLjE1MzEgMTUuNDQ5NSA5LjgxNzk0IDE1LjM1NTUgOS41MDE1NVoiIGZpbGw9IiMwMDg3MTAiLz4KPC9zdmc+"); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-cloud-icon::before { width: 28px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzM5MjQwXzMxOTkzIiBzdHlsZT0ibWFzay10eXBlOmFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSI0IiB5PSI1IiB3aWR0aD0iMTYiIGhlaWdodD0iMTIiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3LjMzMzEgMTAuMTEyM0MxNy4zMzMyIDEwLjA5NzIgMTcuMzMzMyAxMC4wODIgMTcuMzMzMyAxMC4wNjY3QzE3LjMzMzMgNy42MzY3IDE1LjE4NDMgNS42NjY3NSAxMi41MzMzIDUuNjY2NzVDMTAuMjk1NSA1LjY2Njc1IDguNDE1NDIgNy4wNzA0OCA3Ljg4MzcxIDguOTY5NzZDNy44MzM4MyA4Ljk2NzczIDcuNzgzNyA4Ljk2NjcgNy43MzMzMyA4Ljk2NjdDNS42NzE0NyA4Ljk2NjcgNCAxMC42OTA0IDQgMTIuODE2N0M0IDE0Ljk0MyA1LjY3MTQ3IDE2LjY2NjcgNy43MzMzMyAxNi42NjY3TDcuNzU1NTUgMTYuNjY2NkgxNi43ODE5QzE2Ljc4NzggMTYuNjY2NyAxNi43OTM3IDE2LjY2NjcgMTYuNzk5NiAxNi42NjY3QzE4LjU2NjkgMTYuNjY2NyAxOS45OTk2IDE1LjE4OTIgMTkuOTk5NiAxMy4zNjY3QzE5Ljk5OTYgMTEuNzMxNiAxOC44NDY1IDEwLjM3NDIgMTcuMzMzMSAxMC4xMTIzWiIgZmlsbD0id2hpdGUiLz4KPC9tYXNrPgo8ZyBtYXNrPSJ1cmwoI21hc2swXzM5MjQwXzMxOTkzKSI+CjxwYXRoIGQ9Ik0xNy4zMzMxIDEwLjExMjNMMTUuODMzMiAxMC4wOTU3TDE1LjgxOTEgMTEuMzcyNkwxNy4wNzczIDExLjU5MDRMMTcuMzMzMSAxMC4xMTIzWk03Ljg4MzcxIDguOTY5NzZMNy44MjI0OCAxMC40Njg1TDkuMDA4MjQgMTAuNTE3TDkuMzI4MTcgOS4zNzQxNEw3Ljg4MzcxIDguOTY5NzZaTTcuNzMzMzMgMTYuNjY2N1YxOC4xNjY3SDcuNzM3ODRMNy43MzMzMyAxNi42NjY3Wk03Ljc1NTU1IDE2LjY2NjZWMTUuMTY2Nkg3Ljc1MTA1TDcuNzU1NTUgMTYuNjY2NlpNMTYuNzgxOSAxNi42NjY2TDE2Ljc5MDQgMTUuMTY2NkgxNi43ODE5VjE2LjY2NjZaTTE4LjgzMyAxMC4xMjg5QzE4LjgzMzIgMTAuMTA4MyAxOC44MzMzIDEwLjA4NzUgMTguODMzMyAxMC4wNjY3SDE1LjgzMzNDMTUuODMzMyAxMC4wNzY0IDE1LjgzMzMgMTAuMDg2MSAxNS44MzMyIDEwLjA5NTdMMTguODMzIDEwLjEyODlaTTE4LjgzMzMgMTAuMDY2N0MxOC44MzMzIDYuNjg4MDggMTUuODg3MiA0LjE2Njc1IDEyLjUzMzMgNC4xNjY3NVY3LjE2Njc1QzE0LjQ4MTQgNy4xNjY3NSAxNS44MzMzIDguNTg1MzEgMTUuODMzMyAxMC4wNjY3SDE4LjgzMzNaTTEyLjUzMzMgNC4xNjY3NUM5LjY4NDk3IDQuMTY2NzUgNy4xNjg1MSA1Ljk2MDQgNi40MzkyNCA4LjU2NTM4TDkuMzI4MTcgOS4zNzQxNEM5LjY2MjMyIDguMTgwNTcgMTAuOTA2MSA3LjE2Njc1IDEyLjUzMzMgNy4xNjY3NVY0LjE2Njc1Wk03Ljk0NDk0IDcuNDcxMDFDNy44NzQ2NiA3LjQ2ODE0IDcuODA0MTIgNy40NjY3IDcuNzMzMzMgNy40NjY3VjEwLjQ2NjdDNy43NjMyOCAxMC40NjY3IDcuNzkzIDEwLjQ2NzMgNy44MjI0OCAxMC40Njg1TDcuOTQ0OTQgNy40NzEwMVpNNy43MzMzMyA3LjQ2NjdDNC43OTk4NyA3LjQ2NjcgMi41IDkuOTA1ODIgMi41IDEyLjgxNjdINS41QzUuNSAxMS40NzUgNi41NDMwNyAxMC40NjY3IDcuNzMzMzMgMTAuNDY2N1Y3LjQ2NjdaTTIuNSAxMi44MTY3QzIuNSAxNS43Mjc2IDQuNzk5ODcgMTguMTY2NyA3LjczMzMzIDE4LjE2NjdWMTUuMTY2N0M2LjU0MzA3IDE1LjE2NjcgNS41IDE0LjE1ODQgNS41IDEyLjgxNjdIMi41Wk03LjczNzg0IDE4LjE2NjdMNy43NjAwNiAxOC4xNjY2TDcuNzUxMDUgMTUuMTY2Nkw3LjcyODgzIDE1LjE2NjdMNy43Mzc4NCAxOC4xNjY3Wk03Ljc1NTU1IDE4LjE2NjZIMTYuNzgxOVYxNS4xNjY2SDcuNzU1NTVWMTguMTY2NlpNMTYuNzk5NiAxNS4xNjY3QzE2Ljc5NjQgMTUuMTY2NyAxNi43OTM0IDE1LjE2NjYgMTYuNzkwNCAxNS4xNjY2TDE2Ljc3MzQgMTguMTY2NkMxNi43ODIyIDE4LjE2NjcgMTYuNzkxIDE4LjE2NjcgMTYuNzk5NiAxOC4xNjY3VjE1LjE2NjdaTTE4LjQ5OTYgMTMuMzY2N0MxOC40OTk2IDE0LjQwNDYgMTcuNjk1MyAxNS4xNjY3IDE2Ljc5OTYgMTUuMTY2N1YxOC4xNjY3QzE5LjQzODUgMTguMTY2NyAyMS40OTk2IDE1Ljk3MzggMjEuNDk5NiAxMy4zNjY3SDE4LjQ5OTZaTTE3LjA3NzMgMTEuNTkwNEMxNy44NTEyIDExLjcyNDMgMTguNDk5NiAxMi40NDA0IDE4LjQ5OTYgMTMuMzY2N0gyMS40OTk2QzIxLjQ5OTYgMTEuMDIyOCAxOS44NDE4IDkuMDI0MTkgMTcuNTg4OSA4LjYzNDMxTDE3LjA3NzMgMTEuNTkwNFoiIGZpbGw9IiMwMDg3MTAiLz4KPC9nPgo8L3N2Zz4K"); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-key-icon::before { width: 23px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOSIgY3k9IjEyIiByPSIyLjc1IiBzdHJva2U9IiMwMDg3MTAiIHN0cm9rZS13aWR0aD0iMi41Ii8+CjxyZWN0IHg9IjExIiB5PSIxMC43NSIgd2lkdGg9IjgiIGhlaWdodD0iMi41IiBmaWxsPSIjMDA4NzEwIi8+CjxyZWN0IHg9IjE1IiB5PSIxMiIgd2lkdGg9IjIuNSIgaGVpZ2h0PSI0IiBmaWxsPSIjMDA4NzEwIi8+Cjwvc3ZnPgo="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-shield-icon::before { width: 28px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMiAzLjE3NjE1TDE4Ljc1IDYuMjQ0MzNWMTAuODE4MkMxOC43NSAxNC43MTcxIDE2LjI0NTggMTguNDA4OCAxMi43MTQ3IDE5LjU3MzRDMTIuMjUwNyAxOS43MjY0IDExLjc0OTMgMTkuNzI2NCAxMS4yODUzIDE5LjU3MzRDNy43NTQxNiAxOC40MDg4IDUuMjUgMTQuNzE3MSA1LjI1IDEwLjgxODJWNi4yNDQzM0wxMiAzLjE3NjE1Wk02Ljc1IDcuMjEwMlYxMC44MTgyQzYuNzUgMTQuMTMxMSA4Ljg5NTE0IDE3LjIwNTYgMTEuNzU1MSAxOC4xNDg4QzExLjkxNCAxOC4yMDEyIDEyLjA4NiAxOC4yMDEyIDEyLjI0NDkgMTguMTQ4OEMxNS4xMDQ5IDE3LjIwNTYgMTcuMjUgMTQuMTMxMSAxNy4yNSAxMC44MTgyVjcuMjEwMkwxMiA0LjgyMzg0TDYuNzUgNy4yMTAyWiIgZmlsbD0iIzAwODcxMCIvPgo8L3N2Zz4="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-ai-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIHRleHQtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iIGltYWdlLXJlbmRlcmluZz0ib3B0aW1pemVRdWFsaXR5IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHRpdGxlPmpldHBhY2sgcHJvZHVjdCBpY29uIGFpPC90aXRsZT48ZyBjbGFzcz0ibmMtaWNvbi13cmFwcGVyIiBmaWxsPSIjMDA4NzEwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGZpbGw9IiMwMDg3MTAiIGQ9Ik02LjI1IDQuMjVjMC45NSAxLjE5IDIuMTEgMi4xOSAzLjUgMy0xLjQ2IDAuNTYtMi40NiAxLjU2LTMgMy0wLjU2LTEuNDYtMS41Ni0yLjQ2LTMtM2ExNi4xOCAxNi4xOCAwIDAgMSAyLjI1LTEuNWMwLjI0LTAuNDcgMC4zMy0wLjk3IDAuMjUtMS41eiIgb3BhY2l0eT0iLjcyOCI+PC9wYXRoPjxwYXRoIGZpbGw9IiMwMDg3MTAiIGQ9Ik0xNS4yNSA0LjI1YzAuNDQtMC4wNyAwLjc3IDAuMSAxIDAuNSAwLjM3IDEuOTQgMS41MyAzLjExIDMuNSAzLjUtMC43MSAwLjY1LTEuNTQgMS4wNy0yLjUgMS4yNWEzMC40IDMwLjQgMCAwIDAtMS41IDIuNzVjLTAuNjUtMC43MS0xLjA3LTEuNTQtMS4yNS0yLjVhMzAuNCAzMC40IDAgMCAwLTIuNzUtMS41IDEwLjI0IDEwLjI0IDAgMCAxIDIuNzUtMS41YzAuNS0wLjc2IDAuNzUtMS42IDAuNzUtMi41eiIgb3BhY2l0eT0iLjc4NiI+PC9wYXRoPjxwYXRoIGZpbGw9IiMwMDg3MTAiIGQ9Ik0xMC4yNSAxMC4yNWMwLjQ0LTAuMDcgMC43NyAwLjEgMSAwLjUgMC40OSAyLjQ5IDEuOTkgMy45OSA0LjUgNC41YTguNzcgOC43NyAwIDAgMS0zIDEuNSAxOC4xNiAxOC4xNiAwIDAgMC0yIDMuNSA4Ljc3IDguNzcgMCAwIDEtMS41LTMgMTguMTYgMTguMTYgMCAwIDAtMy41LTJsMy41LTJjMC42Mi0wLjkxIDAuOTYtMS45MSAxLTN6IiBvcGFjaXR5PSIuODA5Ij48L3BhdGg+PC9nPjwvc3ZnPg=="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-blaze-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxIDEzLjM0NzRDMjEgMTQuNDUxNSAyMC43NjUzIDE1LjUzOTggMjAuMzA2NiAxNi41NjAyQzE5Ljg0NzkgMTcuNTgwNSAxOS4xODEyIDE4LjUwNjcgMTguMzMzMiAxOS4yODYzQzE3LjQ5MDUgMjAuMDY2IDE2LjQ4NzggMjAuNjgzNCAxNS4zODM3IDIxLjEwNzNDMTQuODYxMSAyMS4zMDYxIDE0LjMyMjQgMjEuNDU3OCAxMy43NzMgMjEuNTYyNUwxNC4wMTgzIDIxLjQzMTdDMTQuMDE4MyAyMS40MzE3IDE2LjE0MTEgMjAuMjE3NyAxNi41NjI1IDE3LjQ5NjhDMTYuNzU5OCAxNS4wNjg5IDE0Ljc0MzcgMTQuMDA2NyAxNC43NDM3IDE0LjAwNjdDMTQuNzQzNyAxNC4wMDY3IDEzLjcxOTcgMTUuMzAzNSAxMi4yNjM2IDE1LjMwMzVDOS45NzU0OSAxNS4zMDM1IDEwLjM5MDYgMTEuNDk2NyAxMC4zOTA2IDExLjQ5NjdDMTAuMzkwNiAxMS40OTY3IDYuOTE5MzUgMTMuMjg0NiA2LjkxOTM1IDE3LjE3NzZDNi45MTkzNSAxOS42MTA4IDkuMzcyOCAyMS40MDU1IDkuMzcyOCAyMS40MDU1VjIxLjQxMDhDOS4wNTI3OSAyMS4zMjcgOC43MzgxMSAyMS4yMjI0IDguNDI4NzYgMjEuMTAyQzcuMzI0NzEgMjAuNjc4MiA2LjMyMTk5IDIwLjA2MDggNS40NzkyOSAxOS4yODExQzQuNjM2NTggMTguNTAxNSAzLjk2NDU1IDE3LjU3NTMgMy41MDU4NyAxNi41NTQ5QzMuMDQ3MTggMTUuNTM0NiAyLjgxMjUgMTQuNDQ2MiAyLjgxMjUgMTMuMzQyMkMyLjgxMjUgOS42MDYxIDcuMTc1MzcgNS45ODUxNyA3LjE3NTM3IDUuOTg1MTdDNy4xNzUzNyA1Ljk4NTE3IDcuNTkxMzkgOC44MjY0NSA5LjcxOTQ4IDguODI2NDVDMTMuNzE5NyA4LjgyNjQ1IDEyLjI2MzYgMi40Mzc1IDEyLjI2MzYgMi40Mzc1QzEyLjI2MzYgMi40Mzc1IDE1LjkwMTEgNC41NjcxNSAxNi45OTQ1IDEwLjI0NDVDMTguOTc5MiA5Ljk4Njg0IDE4LjgxMzIgNy40MDMyIDE4LjgxMzIgNy40MDMyQzE4LjgxMzIgNy40MDMyIDIxIDEwLjI0NDUgMjEgMTMuMzczNSIgZmlsbD0iIzA2OUUwOCIvPgo8L3N2Zz4K"); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-crm-icon::before { width: 28px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS41IDkuNUMxNi4wNTIzIDkuNSAxNi41IDkuMDUyMjggMTYuNSA4LjVDMTYuNSA3Ljk0NzcyIDE2LjA1MjMgNy41IDE1LjUgNy41QzE0Ljk0NzcgNy41IDE0LjUgNy45NDc3MiAxNC41IDguNUMxNC41IDkuMDUyMjggMTQuOTQ3NyA5LjUgMTUuNSA5LjVaTTE1LjUgMTFDMTYuODgwNyAxMSAxOCA5Ljg4MDcxIDE4IDguNUMxOCA3LjExOTI5IDE2Ljg4MDcgNiAxNS41IDZDMTQuMTE5MyA2IDEzIDcuMTE5MjkgMTMgOC41QzEzIDkuODgwNzEgMTQuMTE5MyAxMSAxNS41IDExWk0xMy4yNSAxN1YxNUMxMy4yNSAxMy40ODEyIDEyLjAxODggMTIuMjUgMTAuNSAxMi4yNUg2LjVDNC45ODEyMiAxMi4yNSAzLjc1IDEzLjQ4MTIgMy43NSAxNVYxN0g1LjI1VjE1QzUuMjUgMTQuMzA5NiA1LjgwOTY0IDEzLjc1IDYuNSAxMy43NUgxMC41QzExLjE5MDQgMTMuNzUgMTEuNzUgMTQuMzA5NiAxMS43NSAxNVYxN0gxMy4yNVpNMjAuMjUgMTVWMTdIMTguNzVWMTVDMTguNzUgMTQuMzA5NiAxOC4xOTA0IDEzLjc1IDE3LjUgMTMuNzVIMTVWMTIuMjVIMTcuNUMxOS4wMTg4IDEyLjI1IDIwLjI1IDEzLjQ4MTIgMjAuMjUgMTVaTTkuNSA4LjVDOS41IDkuMDUyMjggOS4wNTIyOCA5LjUgOC41IDkuNUM3Ljk0NzcyIDkuNSA3LjUgOS4wNTIyOCA3LjUgOC41QzcuNSA3Ljk0NzcyIDcuOTQ3NzIgNy41IDguNSA3LjVDOS4wNTIyOCA3LjUgOS41IDcuOTQ3NzIgOS41IDguNVpNMTEgOC41QzExIDkuODgwNzEgOS44ODA3MSAxMSA4LjUgMTFDNy4xMTkyOSAxMSA2IDkuODgwNzEgNiA4LjVDNiA3LjExOTI5IDcuMTE5MjkgNiA4LjUgNkM5Ljg4MDcxIDYgMTEgNy4xMTkyOSAxMSA4LjVaIiBmaWxsPSIjMDA4NzEwIi8+Cjwvc3ZnPgo="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-social-icon::before { width: 28px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC40OTk4IDUuNTM4MDlWMjEuMzM3NEw5LjQ5OTc2IDE4LjYxMDFWMjMuNTYyN0g3LjgxMjI2VjE4LjA5ODdMNC43NDY2MSAxNy4xNjk4QzMuNTYwNzMgMTYuODEwNCAyLjc0OTc2IDE1LjcxNzMgMi43NDk3NiAxNC40NzgxVjEyLjM5NzNDMi43NDk3NiAxMS4xNTgyIDMuNTYwNzMgMTAuMDY1MSA0Ljc0NjYxIDkuNzA1NzFMMTguNDk5OCA1LjUzODA5Wk0xNi44MTIzIDE5LjA2MjdMOS40OTk3NiAxNi44NDY4TDkuNDk5NzYgMTAuMDI4NkwxNi44MTIzIDcuODEyNzNWMTkuMDYyN1pNNy44MTIyNiAxMC41NEw3LjgxMjI2IDE2LjMzNTVMNS4yMzYgMTUuNTU0OEM0Ljc2MTY0IDE1LjQxMSA0LjQzNzI2IDE0Ljk3MzggNC40MzcyNiAxNC40NzgxVjEyLjM5NzNDNC40MzcyNiAxMS45MDE3IDQuNzYxNjUgMTEuNDY0NCA1LjIzNiAxMS4zMjA3TDcuODEyMjYgMTAuNTRaTTIwLjc1MDEgMTQuMjgxNUgyNS4yNTAxVjEyLjU5NEgyMC43NTAxVjE0LjI4MTVaTTI1LjI1MDEgMTkuMDYyN0wyMC43NTAxIDE3LjkzNzdWMTYuMjUwMkwyNS4yNTAxIDE3LjM3NTJWMTkuMDYyN1pNMjAuNzUwMSAxMC42MjUyTDI1LjI1MDEgOS41MDAyM1Y3LjgxMjczTDIwLjc1MDEgOC45Mzc3M1YxMC42MjUyWiIgZmlsbD0iIzAwODcxMCIvPgo8L3N2Zz4K"); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-stats-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS4yNSA1SDEyLjc1VjIwSDExLjI1VjVaTTYgMTBINy41VjIwSDZWMTBaTTE4IDE0SDE2LjVWMjBIMThWMTRaIiBmaWxsPSIjMDA4NzEwIi8+Cjwvc3ZnPgo="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-newsletter-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMy43NSIgeT0iNS43NSIgd2lkdGg9IjE2LjUiIGhlaWdodD0iMTIuNSIgcng9IjEuMjUiIHN0cm9rZT0iIzAwODcxMCIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTQgOC41TDEyIDE0LjVMMjAgOC41IiBzdHJva2U9IiMwMDg3MTAiIHN0cm9rZS13aWR0aD0iMS41Ii8+Cjwvc3ZnPgo="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-performance-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDYuNUwxNyAxMkwxMiAxNy41TTYgNi41TDExIDEyTDYgMTcuNSIgc3Ryb2tlPSIjMDA4NzEwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-growth-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjE5NTA1IDE2LjI1NDVDNC40NzM2OCAxNi41NjEgNC45NDgwMiAxNi41ODM2IDUuMjU0NTEgMTYuMzA0OUwxMC4yNTk1IDExLjc1NDlMMTQuMjg0MiAxNS4yNzY1TDE5IDEwLjU2MDdWMTMuNzVIMjAuNVY4SDE0Ljc1VjkuNUgxNy45MzkzTDE0LjIxNTggMTMuMjIzNUwxMC4yNDA1IDkuNzQ1MDdMNC4yNDU1IDE1LjE5NUMzLjkzOTAxIDE1LjQ3MzcgMy45MTY0MiAxNS45NDggNC4xOTUwNSAxNi4yNTQ1WiIgZmlsbD0iIzAwODcxMCIvPgo8L3N2Zz4K"); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-videopress-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMy43NSIgeT0iMy43NSIgd2lkdGg9IjIwLjUiIGhlaWdodD0iMjAuNSIgcng9IjIuMDQzNjUiIHN0cm9rZT0iIzAwODcxMCIgc3Ryb2tlLXdpZHRoPSIxLjUiLz4KPHBhdGggZD0iTTExLjU1NTcgMTcuNjY2OFYxMC4zMzM1TDE3LjY2NjggMTQuMDAwMkwxMS41NTU3IDE3LjY2NjhaIiBmaWxsPSIjMDA4NzEwIi8+Cjwvc3ZnPgo="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-search-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMThMMTAgMTQuNSIgc3Ryb2tlPSIjMDA4NzEwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8Y2lyY2xlIGN4PSIxMy41IiBjeT0iMTEuNSIgcj0iNC43NSIgc3Ryb2tlPSIjMDA4NzEwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-complete-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01IDUuNUgxOUMxOS4yNzYxIDUuNSAxOS41IDUuNzIzODYgMTkuNSA2VjcuNUMxOS41IDcuNzc2MTQgMTkuMjc2MSA4IDE5IDhIMTguNUg1LjVINUM0LjcyMzg2IDggNC41IDcuNzc2MTQgNC41IDcuNVY2QzQuNSA1LjcyMzg2IDQuNzIzODYgNS41IDUgNS41Wk00IDkuMjMyNDRDMy40MDIyIDguODg2NjMgMyA4LjI0MDI4IDMgNy41VjZDMyA0Ljg5NTQzIDMuODk1NDMgNCA1IDRIMTlDMjAuMTA0NiA0IDIxIDQuODk1NDMgMjEgNlY3LjVDMjEgOC4yNDAyOCAyMC41OTc4IDguODg2NjMgMjAgOS4yMzI0NFY5LjVWMThDMjAgMTkuMTA0NiAxOS4xMDQ2IDIwIDE4IDIwSDZDNC44OTU0MyAyMCA0IDE5LjEwNDYgNCAxOFY5LjVWOS4yMzI0NFpNNS41IDkuNVYxOEM1LjUgMTguMjc2MSA1LjcyMzg2IDE4LjUgNiAxOC41SDE4QzE4LjI3NjEgMTguNSAxOC41IDE4LjI3NjEgMTguNSAxOFY5LjVINS41WiIgZmlsbD0iIzAwODcxMCIvPgo8L3N2Zz4="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-forms-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4IDQuNUg2QzQuOSA0LjUgNCA1LjQgNCA2LjVWMTguNUM0IDE5LjYgNC45IDIwLjUgNiAyMC41SDE4QzE5LjEgMjAuNSAyMCAxOS42IDIwIDE4LjVWNi41QzIwIDUuNCAxOS4xIDQuNSAxOCA0LjVaTTE4LjUgMTguNUMxOC41IDE4LjggMTguMyAxOSAxOCAxOUg2QzUuNyAxOSA1LjUgMTguOCA1LjUgMTguNVY2LjVDNS41IDYuMiA1LjcgNiA2IDZIMThDMTguMyA2IDE4LjUgNi4yIDE4LjUgNi41VjE4LjVaTTcgMTdIMTdWMTUuNUg3VjE3Wk0xMCAxM0gxN1YxMS41SDEwVjEzWk05IDExLjVIN1YxM0g5VjExLjVaIiBmaWxsPSIjMDA4NzEwIi8+Cjwvc3ZnPgo="); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-with-creator-icon::before { width: 24px; height: auto; vertical-align: middle; display: inline-block; content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNSIgdmlld0JveD0iMCAwIDI0IDI1IiBmaWxsPSJub25lIj4KICA8cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMC41KSIgZmlsbD0ibm9uZSIvPgogIDxtYXNrIGlkPSJwYXRoLTEtaW5zaWRlLTFfNDIwNl8xNTkwIiBmaWxsPSJ3aGl0ZSI+CiAgICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE3IDE1LjAxMDRDMTcgMTQuMzkzMSAxNy4yNDY5IDEzLjgwOTIgMTcuNTg3NCAxMy4yOTQzQzE4LjI0NyAxMi4yOTY3IDE4LjYzMSAxMS4xMDEgMTguNjMxIDkuODE1NTJDMTguNjMxIDYuMzI3NTYgMTUuODAzNSAzLjUgMTIuMzE1NSAzLjVDOC44Mjc1NiAzLjUgNiA2LjMyNzU2IDYgOS44MTU1MkM2IDExLjMwMDQgNi41MTI0OCAxMi42NjU3IDcuMzcwMjIgMTMuNzQ0QzcuNzM5NCAxNC4yMDgxIDggMTQuNzYzMiA4IDE1LjM1NjJDOCAxNi41NDAyIDguOTU5OCAxNy41IDEwLjE0MzggMTcuNUgxNC41MTA0QzE1Ljg4NTQgMTcuNSAxNyAxNi4zODU0IDE3IDE1LjAxMDRaIi8+CiAgPC9tYXNrPgogIDxwYXRoIGQ9Ik0xNy41ODc0IDEzLjI5NDNMMTguODM4NiAxNC4xMjE2TDE3LjU4NzQgMTMuMjk0M1pNMTcuMTMxIDkuODE1NTJDMTcuMTMxIDEwLjc5NzggMTYuODM4NSAxMS43MDcyIDE2LjMzNjIgMTIuNDY3TDE4LjgzODYgMTQuMTIxNkMxOS42NTU1IDEyLjg4NjIgMjAuMTMxIDExLjQwNDEgMjAuMTMxIDkuODE1NTJIMTcuMTMxWk0xMi4zMTU1IDVDMTQuOTc1MSA1IDE3LjEzMSA3LjE1NTk4IDE3LjEzMSA5LjgxNTUySDIwLjEzMUMyMC4xMzEgNS40OTkxMyAxNi42MzE5IDIgMTIuMzE1NSAyVjVaTTcuNSA5LjgxNTUyQzcuNSA3LjE1NTk4IDkuNjU1OTggNSAxMi4zMTU1IDVWMkM3Ljk5OTEzIDIgNC41IDUuNDk5MTMgNC41IDkuODE1NTJINy41Wk04LjU0NDEzIDEyLjgxMDJDNy44ODk5MyAxMS45ODc4IDcuNSAxMC45NDkzIDcuNSA5LjgxNTUySDQuNUM0LjUgMTEuNjUxNiA1LjEzNTAzIDEzLjM0MzYgNi4xOTYzMSAxNC42Nzc4TDguNTQ0MTMgMTIuODEwMlpNMTQuNTEwNCAxNkgxMC4xNDM4VjE5SDE0LjUxMDRWMTZaTTYuNSAxNS4zNTYyQzYuNSAxNy4zNjg2IDguMTMxMzggMTkgMTAuMTQzOCAxOVYxNkM5Ljc4ODIzIDE2IDkuNSAxNS43MTE4IDkuNSAxNS4zNTYySDYuNVpNNi4xOTYzMSAxNC42Nzc4QzYuNDMwNzcgMTQuOTcyNSA2LjUgMTUuMjA3NSA2LjUgMTUuMzU2Mkg5LjVDOS41IDE0LjMxODggOS4wNDgwMyAxMy40NDM3IDguNTQ0MTMgMTIuODEwMkw2LjE5NjMxIDE0LjY3NzhaTTE0LjUxMDQgMTlDMTYuNzEzOCAxOSAxOC41IDE3LjIxMzggMTguNSAxNS4wMTA0SDE1LjVDMTUuNSAxNS41NTcgMTUuMDU3IDE2IDE0LjUxMDQgMTZWMTlaTTE2LjMzNjIgMTIuNDY3QzE1LjkwMzggMTMuMTIxIDE1LjUgMTMuOTkzMSAxNS41IDE1LjAxMDRIMTguNUMxOC41IDE0Ljc5MzEgMTguNTkwMSAxNC40OTc1IDE4LjgzODYgMTQuMTIxNkwxNi4zMzYyIDEyLjQ2N1oiIGZpbGw9IiMwMDg3MTAiIG1hc2s9InVybCgjcGF0aC0xLWluc2lkZS0xXzQyMDZfMTU5MCkiLz4KICA8bGluZSB4MT0iOSIgeTE9IjE4Ljc1IiB4Mj0iMTYiIHkyPSIxOC43NSIgc3Ryb2tlPSIjMDA4NzEwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgogIDxsaW5lIHgxPSIxMSIgeTE9IjIwLjc1IiB4Mj0iMTQiIHkyPSIyMC43NSIgc3Ryb2tlPSIjMDA4NzEwIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4K"); margin-right: 12px; } .wp-block-paragraph.is-style-jetpack-quote { position: relative } .wp-block-paragraph.is-style-jetpack-quote::before { content: open-quote; position: absolute; top: 4px; left: -3.5rem; padding: 3px; font-family: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif; font-size: 5rem; color: #069e08; } .is-style-jetpack-checklist { padding-left: 0; margin-bottom: 24px; } .is-style-jetpack-checklist li {margin: .5rem 0;background: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iZ3JpZGljb24gZ3JpZGljb25zLWNoZWNrbWFyayIgaGVpZ2h0PSIyNCIgd2lkdGg9IjI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsIDIpIj48cGF0aCBmaWxsPSIjMDA4NzEwIiBkPSJNOSAxOS40MTRsLTYuNzA3LTYuNzA3IDEuNDE0LTEuNDE0TDkgMTYuNTg2IDIwLjI5MyA1LjI5M2wxLjQxNCAxLjQxNCI+PC9wYXRoPjwvZz48L3N2Zz4=) no-repeat 0px 0px;list-style: none;padding: 0px 0px 0px 36px; </style> <style id='wp-parsely-recommendations-style-inline-css'> .parsely-recommendations-list-title{font-size:1.2em}.parsely-recommendations-list{list-style:none;padding:unset}.parsely-recommendations-cardbody{overflow:hidden;padding:.8em;text-overflow:ellipsis;white-space:nowrap}.parsely-recommendations-cardmedia{padding:.8em .8em 0} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-4-1' href='https://s1.wp.com/_static/??-eJyVzDEOgCAMQNELiQU1Jg7Gs2AlDYpAaInx9ro5O/7hfbiywhTFRYEcKvnIQPXN1RVSa0h4MOxOssVDBXunKoqK34DlDq5F5gb+LIoVH4k/vpyzGYe+03oyw/4AcmU1KQ==&cssminify=yes' type='text/css' media='all' /> <style id='activitypub-followers-style-inline-css'> .activitypub-follower-block.is-style-compact .activitypub-handle,.activitypub-follower-block.is-style-compact .sep{display:none}.activitypub-follower-block.is-style-with-lines ul li{border-bottom:.5px solid;margin-bottom:.5rem;padding-bottom:.5rem}.activitypub-follower-block.is-style-with-lines ul li:last-child{border-bottom:none}.activitypub-follower-block.is-style-with-lines .activitypub-handle,.activitypub-follower-block.is-style-with-lines .activitypub-name{text-decoration:none}.activitypub-follower-block.is-style-with-lines .activitypub-handle:hover,.activitypub-follower-block.is-style-with-lines .activitypub-name:hover{text-decoration:underline}.activitypub-follower-block ul{margin:0!important;padding:0!important}.activitypub-follower-block li{display:flex;margin-bottom:1rem}.activitypub-follower-block img{border-radius:50%;height:40px;margin-right:var(--wp--preset--spacing--20,.5rem);width:40px}.activitypub-follower-block .activitypub-link{align-items:center;color:inherit!important;display:flex;flex-flow:row nowrap;max-width:100%;text-decoration:none!important}.activitypub-follower-block .activitypub-handle,.activitypub-follower-block .activitypub-name{text-decoration:underline;text-decoration-thickness:.8px;text-underline-position:under}.activitypub-follower-block .activitypub-handle:hover,.activitypub-follower-block .activitypub-name:hover{text-decoration:none}.activitypub-follower-block .activitypub-name{font-size:var(--wp--preset--font-size--normal,16px)}.activitypub-follower-block .activitypub-actor{font-size:var(--wp--preset--font-size--small,13px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.activitypub-follower-block .sep{padding:0 .2rem}.activitypub-follower-block .wp-block-query-pagination{margin-top:1.5rem}.activitypub-follower-block .activitypub-pager{cursor:default}.activitypub-follower-block .activitypub-pager.current{opacity:.33}.activitypub-follower-block .page-numbers{padding:0 .2rem}.activitypub-follower-block .page-numbers.current{font-weight:700;opacity:1} </style> <style id='activitypub-follow-me-style-inline-css'> .activitypub__modal.components-modal__frame{background-color:#f7f7f7;color:#333}.activitypub__modal.components-modal__frame .components-modal__header-heading,.activitypub__modal.components-modal__frame h4{color:#333;letter-spacing:inherit;word-spacing:inherit}.activitypub__modal.components-modal__frame .components-modal__header .components-button:hover{color:var(--wp--preset--color--white)}.activitypub__dialog{max-width:40em}.activitypub__dialog h4{line-height:1;margin:0}.activitypub__dialog .activitypub-dialog__section{margin-bottom:2em}.activitypub__dialog .activitypub-dialog__remember{margin-top:1em}.activitypub__dialog .activitypub-dialog__description{font-size:var(--wp--preset--font-size--normal,.75rem);margin:.33em 0 1em}.activitypub__dialog .activitypub-dialog__button-group{align-items:flex-end;display:flex;justify-content:flex-end}.activitypub__dialog .activitypub-dialog__button-group svg{height:21px;margin-right:.5em;width:21px}.activitypub__dialog .activitypub-dialog__button-group input{background-color:var(--wp--preset--color--white);border-radius:50px 0 0 50px;border-width:1px;border:1px solid var(--wp--preset--color--black);color:var(--wp--preset--color--black);flex:1;font-size:16px;height:inherit;line-height:1;margin-right:0;padding:15px 23px}.activitypub__dialog .activitypub-dialog__button-group button{align-self:center;background-color:var(--wp--preset--color--black);border-radius:0 50px 50px 0;border-width:1px;color:var(--wp--preset--color--white);font-size:16px;height:inherit;line-height:1;margin-left:0;padding:15px 23px;text-decoration:none}.activitypub__dialog .activitypub-dialog__button-group button:hover{border:inherit}.activitypub-follow-me-block-wrapper{width:100%}.activitypub-follow-me-block-wrapper.has-background .activitypub-profile,.activitypub-follow-me-block-wrapper.has-border-color .activitypub-profile{padding-left:1rem;padding-right:1rem}.activitypub-follow-me-block-wrapper .activitypub-profile{align-items:center;display:flex;padding:1rem 0}.activitypub-follow-me-block-wrapper .activitypub-profile .activitypub-profile__avatar{border-radius:50%;height:75px;margin-right:1rem;width:75px}.activitypub-follow-me-block-wrapper .activitypub-profile .activitypub-profile__content{flex:1;min-width:0}.activitypub-follow-me-block-wrapper .activitypub-profile .activitypub-profile__handle,.activitypub-follow-me-block-wrapper .activitypub-profile .activitypub-profile__name{line-height:1.2;margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.activitypub-follow-me-block-wrapper .activitypub-profile .activitypub-profile__name{font-size:1.25em}.activitypub-follow-me-block-wrapper .activitypub-profile .activitypub-profile__follow{align-self:center;background-color:var(--wp--preset--color--black);color:var(--wp--preset--color--white);margin-left:1rem} </style> <style id='jetpackme-new-hero-visual-style-inline-css'> .wp-block-jetpackme-new-hero-visual .home-hero-visual{margin-top:0}.wp-block-jetpackme-new-hero-visual .product-hero-visual__content img.product-hero-visual__img{max-width:unset;width:unset} </style> <style id='jetpackme-new-carousel-style-inline-css'> .wp-block-jetpackme-new-carousel{overflow:hidden;position:relative}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-slide{flex-shrink:0}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls{list-style:none;margin:0;padding:0}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls button{background:none;border:none;cursor:pointer}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .swiper-button-disabled{display:none}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .next-slide-icon,.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .prev-slide-icon{background-repeat:no-repeat;cursor:pointer;display:block;height:24px;width:13px}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .jetpackme-new-swiper-prev{left:1rem}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .jetpackme-new-swiper-prev .prev-slide-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMkMzMzM4IiBzdHJva2Utd2lkdGg9IjEuNSIgZD0iTTEyIDIzIDIgMTIgMTIgMSIvPjwvc3ZnPg==)}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .jetpackme-new-swiper-next{right:1rem}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .jetpackme-new-swiper-next .next-slide-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjMkMzMzM4IiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTEgMjMgMTAtMTFMMSAxIi8+PC9zdmc+)}.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .jetpackme-new-swiper-next,.wp-block-jetpackme-new-carousel .jetpackme-new-swiper-controls .jetpackme-new-swiper-prev{position:absolute;top:50%} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-14-1' href='https://s2.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpoZmFkYGRuZGmQBAHPvL0Y=&cssminify=yes' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-16-1' href='https://s0.wp.com/_static/??-eJx9jUsOwjAMRC+EY6UgCAvEWZrEKoG4jWq3hduTLvisurFG1nszuBQIQ6/UK5Y8dakXDIPPQ3gINsY6Y0ESl0ww0mwOGJPolwDRVyYTRHb4V8QT/LpGqn8ura4EU0wtZeKKbWlLih1p1eWTQem5rZQ6A96XkUSgXk4Tg97qlqzelS/26KzbN835dH8DjlpbIA==&cssminify=yes' type='text/css' media='all' /> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--jetpack-green-30: #2fb41f;--wp--preset--color--jetpack-green-40: #069e08;--wp--preset--color--jetpack-green-50: #008710;--wp--preset--color--jetpack-green-60: #007117;--wp--preset--color--gray-0: #f6f7f7;--wp--preset--color--gray-70: #3c434a;--wp--preset--color--gray-40: #787c82;--wp--preset--color--blue-0: #e9eff5;--wp--preset--color--blue-50: #2271b1;--wp--preset--color--green-0: #f0f2eb;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 15px;--wp--preset--font-size--medium: clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.469), 20px);--wp--preset--font-size--large: 24px;--wp--preset--font-size--x-large: clamp(25.014px, 1.563rem + ((1vw - 3.2px) * 1.327), 42px);--wp--preset--font-size--normal: 18px;--wp--preset--font-size--huge: clamp(28px, 1.75rem + ((1vw - 3.2px) * 1.563), 48px);--wp--preset--font-size--xxl: clamp(68px, 4.25rem + ((1vw - 3.2px) * 1.25), 84px);--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 1200px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-jetpack-green-30-color{color: var(--wp--preset--color--jetpack-green-30) !important;}.has-jetpack-green-40-color{color: var(--wp--preset--color--jetpack-green-40) !important;}.has-jetpack-green-50-color{color: var(--wp--preset--color--jetpack-green-50) !important;}.has-jetpack-green-60-color{color: var(--wp--preset--color--jetpack-green-60) !important;}.has-gray-0-color{color: var(--wp--preset--color--gray-0) !important;}.has-gray-70-color{color: var(--wp--preset--color--gray-70) !important;}.has-gray-40-color{color: var(--wp--preset--color--gray-40) !important;}.has-blue-0-color{color: var(--wp--preset--color--blue-0) !important;}.has-blue-50-color{color: var(--wp--preset--color--blue-50) !important;}.has-green-0-color{color: var(--wp--preset--color--green-0) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-jetpack-green-30-background-color{background-color: var(--wp--preset--color--jetpack-green-30) !important;}.has-jetpack-green-40-background-color{background-color: var(--wp--preset--color--jetpack-green-40) !important;}.has-jetpack-green-50-background-color{background-color: var(--wp--preset--color--jetpack-green-50) !important;}.has-jetpack-green-60-background-color{background-color: var(--wp--preset--color--jetpack-green-60) !important;}.has-gray-0-background-color{background-color: var(--wp--preset--color--gray-0) !important;}.has-gray-70-background-color{background-color: var(--wp--preset--color--gray-70) !important;}.has-gray-40-background-color{background-color: var(--wp--preset--color--gray-40) !important;}.has-blue-0-background-color{background-color: var(--wp--preset--color--blue-0) !important;}.has-blue-50-background-color{background-color: var(--wp--preset--color--blue-50) !important;}.has-green-0-background-color{background-color: var(--wp--preset--color--green-0) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-jetpack-green-30-border-color{border-color: var(--wp--preset--color--jetpack-green-30) !important;}.has-jetpack-green-40-border-color{border-color: var(--wp--preset--color--jetpack-green-40) !important;}.has-jetpack-green-50-border-color{border-color: var(--wp--preset--color--jetpack-green-50) !important;}.has-jetpack-green-60-border-color{border-color: var(--wp--preset--color--jetpack-green-60) !important;}.has-gray-0-border-color{border-color: var(--wp--preset--color--gray-0) !important;}.has-gray-70-border-color{border-color: var(--wp--preset--color--gray-70) !important;}.has-gray-40-border-color{border-color: var(--wp--preset--color--gray-40) !important;}.has-blue-0-border-color{border-color: var(--wp--preset--color--blue-0) !important;}.has-blue-50-border-color{border-color: var(--wp--preset--color--blue-50) !important;}.has-green-0-border-color{border-color: var(--wp--preset--color--green-0) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}.has-xxl-font-size{font-size: var(--wp--preset--font-size--xxl) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;} :root :where(.wp-block-pullquote){font-size: clamp(0.984em, 0.984rem + ((1vw - 0.2em) * 0.645), 1.5em);line-height: 1.6;} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-18-1' href='https://s0.wp.com/_static/??-eJxtjNsOgjAQRH/IddWEIA/Gbyl1LMVeSHdJ498LDyQafJszOTNcJ7I5KZJynGkKs/NJuKAP2S3RsZVvPC544P8jh0whW6M+px+gZzC+7KY6IELYXC2P0MnYVwQlVBZ9B+z04HteHwPIzRBBIale7YDCW6DqHw66eVu9ft3j7dxeuubStKdu/ACh5lxK&cssminify=yes' type='text/css' media='all' /> <style id='jetpack-global-styles-frontend-style-inline-css'> :root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;} </style> <link crossorigin='anonymous' rel='stylesheet' id='all-css-20-1' href='https://s2.wp.com/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' /> <script type="text/javascript" id="jetpack-mu-wpcom-settings-js-before"> /* <![CDATA[ */ var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https:\/\/s1.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/sun\/vendor\/automattic\/jetpack-mu-wpcom\/src\/build\/"}; /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s1.wp.com/_static/??/wp-content/js/rlt-proxy.js,/wp-includes/js/dist/vendor/wp-polyfill.min.js?m=1727178113j'></script> <script type="text/javascript" id="rlt-proxy-js-after"> /* <![CDATA[ */ rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} ); /* ]]> */ </script> <script type="text/javascript" crossorigin='anonymous' src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.6.4/build/hooks/index.min.js?m=1731954715i&amp;ver=84e753e2b66eb7028d38" id="wp-hooks-js"></script> <script type="text/javascript" crossorigin='anonymous' src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.6.4/build/i18n/index.min.js?m=1731954715i&amp;ver=bd5a2533e717a1043151" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s1.wp.com/_static/??-eJyVjcEKAjEMRH/IbiwKqwfxW0KNblqbBhOon28XPHlyYU7DvHnQNaQmTuLgC1UywFOCTK6YSqUg1CHbyJi1wjRl28G/kP6uR3nnd+h8a92myrLlbiWfLIVeW6gFVVnILKAZm6P46n+Qf/3XeonzIZ7jfj7G/AHBbWNR'></script> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://jetpackme.wordpress.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress.com" /> <style> @font-face { font-family: Recoleta; font-display: swap; src: url('https://s1.wp.com/i/fonts/recoleta/400.woff2') } </style> <!-- Jetpack Open Graph Tags --> <meta property="og:type" content="website" /> <meta property="og:title" content="Support &#8211; Jetpack" /> <meta property="og:url" content="https://jetpack.com/support/" /> <meta property="og:site_name" content="Jetpack" /> <meta property="og:image" content="https://jetpack.com/wp-content/uploads/2022/06/cropped-jp-favicon-new-3.png?w=200" /> <meta property="og:image:width" content="200" /> <meta property="og:image:height" content="200" /> <meta property="og:image:alt" content="" /> <meta property="og:locale" content="en_US" /> <meta name="twitter:site" content="@jetpack" /> <meta name="twitter:app:name:iphone" content="Jetpack" /> <meta name="twitter:app:id:iphone" content="1565481562" /> <meta name="twitter:app:name:ipad" content="Jetpack" /> <meta name="twitter:app:id:ipad" content="1565481562" /> <meta name="twitter:app:name:googleplay" content="Jetpack" /> <meta name="twitter:app:id:googleplay" content="com.jetpack.android" /> <!-- End Jetpack Open Graph Tags --> <link rel='openid.server' href='https://jetpack.com/?openidserver=1' /> <link rel='openid.delegate' href='https://jetpack.com/' /> <link rel="search" type="application/opensearchdescription+xml" href="https://jetpack.com/osd.xml" title="Jetpack" /> <link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" /> <meta name="parsely-title" content="jetpack_support" /> <meta name="parsely-link" content="https://jetpack.com/support/" /> <meta name="parsely-type" content="index" /> <meta property="fediverse:creator" name="fediverse:creator" content="jetpack.com@jetpack.com" /> <meta name="ahrefs-site-verification" content="6fa21ec91fd22f37a48517db6b327918614366e821de0edc5b7f323cd1fc9dd4"> <link rel="canonical" href="https://jetpack.com/support/" /> <style type="text/css"> .recentcomments a { display: inline !important; padding: 0 !important; margin: 0 !important; } table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar { border: 0px; margin: 0; } table.recentcommentsavatartop a, table.recentcommentsavatarend a { border: 0px !important; background-color: transparent !important; } td.recentcommentsavatarend, td.recentcommentsavatartop { padding: 0px 0px 1px 0px; margin: 0px; } td.recentcommentstextend { border: none !important; padding: 0px 0px 2px 10px; } .rtl td.recentcommentstextend { padding: 0px 10px 2px 0px; } td.recentcommentstexttop { border: none; padding: 0px 0px 0px 10px; } .rtl td.recentcommentstexttop { padding: 0px 10px 0px 0px; } </style> <meta name="application-name" content="Jetpack" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-tooltip" content="The ultimate WordPress plugin for security, backups, site performance, and growth tools" /><link rel="icon" href="https://jetpack.com/wp-content/uploads/2022/06/cropped-jp-favicon-new-3.png?w=32" sizes="32x32" /> <link rel="icon" href="https://jetpack.com/wp-content/uploads/2022/06/cropped-jp-favicon-new-3.png?w=192" sizes="192x192" /> <link rel="apple-touch-icon" href="https://jetpack.com/wp-content/uploads/2022/06/cropped-jp-favicon-new-3.png?w=180" /> <meta name="msapplication-TileImage" content="https://jetpack.com/wp-content/uploads/2022/06/cropped-jp-favicon-new-3.png?w=270" /> <link rel="stylesheet" id="custom-css-css" type="text/css" href="https://s0.wp.com/?custom-css=1&#038;csblog=1moTy&#038;cscache=6&#038;csrev=467" /> <!-- Your Google Analytics Plugin is missing the tracking ID --> <script>document.querySelector('html').classList.remove('no-js');</script> </head> <body class="archive post-type-archive post-type-archive-jetpack_support wp-embed-responsive jps-theme-a8c/jetpackme-new customizer-styles-applied jetpack-reblog-enabled"> <header class="mast"> <div class="jpcom-banner" role="banner" aria-label="discount banner"> <div class="in"> <b> Black Friday sale: </b> <span> Get up to 70% off new annual Jetpack plans. </span> <a href="https://jetpack.com/pricing/" class="jpcom-banner__cta "> Get up to 70% off </a> <span class="jpcom-banner__countdown-timer"> Sale ends in: <span data-time-unit="days">--</span>d <span data-time-unit="hours">--</span>h <span data-time-unit="minutes">--</span>m <span data-time-unit="seconds">--</span>s </span> </div> <button id="close-jpcom-banner" aria-label="Close discount banner"> <svg class="gridicon gridicons-cross-small" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M17.705 7.705l-1.41-1.41L12 10.59 7.705 6.295l-1.41 1.41L10.59 12l-4.295 4.295 1.41 1.41L12 13.41l4.295 4.295 1.41-1.41L13.41 12l4.295-4.295z"/></g></svg> </button> <script type="text/javascript"> ( function() { let intervalId; let resizeId; let initialNavY; document.body.classList.add( 'has-jpcom-banner' ); const closeDiscountBannerButton = document.getElementById( 'close-jpcom-banner' ); const jpcomBannerCtaButton = document.querySelector( '.jpcom-banner__cta' ); const timeUnitElements = {}; const bannerTitle = "Black Friday sale:"; function getTimeLeftFromSecondsLeft ( secondsLeft ) { return { 'days': Math.floor( secondsLeft/ ( 60 * 60 * 24 ) ), 'hours': Math.floor( ( secondsLeft/ ( 60 * 60) ) % 24 ), 'minutes': Math.floor( ( secondsLeft/ 60 ) % 60 ), 'seconds': Math.floor( secondsLeft % 60 ) }; } function renderCountdownTimer( timeLeftObject ) { Object.keys( timeLeftObject ).forEach( function( key ) { const unitValue = 'seconds' === key ? timeLeftObject[ key ].toString().padStart( 2, '0' ) : timeLeftObject[ key ] timeUnitElements[ key ].textContent = unitValue; } ); } function updateCountdown() { const expiryTimestamp = 1733054400; const timeLeftInSeconds = expiryTimestamp - ( Date.now() / 1000 ); if ( timeLeftInSeconds <= 0 ) { clearInterval( intervalId ); return; } const timeLeftObject = getTimeLeftFromSecondsLeft( timeLeftInSeconds ); renderCountdownTimer( timeLeftObject ); } function resizeBanner() { const isSmallScreen = 900 > document.documentElement.clientWidth; const stickyNav = document.querySelector( '.js-header' ); const banner = document.querySelector( '.jpcom-banner' ); const landingHeader = document.querySelector( '.has-jpcom-banner .mast.is-within-landing-page.with-background' ); const heroHeader = document.querySelector( '.has-jpcom-banner:not(.page-template-front-page-2018) .mast .revolving-headers.is-within-landing-page.in' ); const stickyNavSpacing = banner ? banner.offsetHeight + banner.offsetTop : null; const headerSpacing = banner ? stickyNavSpacing + stickyNav.offsetHeight - banner.offsetTop : null; if ( typeof initialNavY !== 'number' ) { initialNavY = stickyNav.getBoundingClientRect().top; } // lrg-screen breakpoint if ( stickyNavSpacing && window.innerWidth > 900) { stickyNav.style.top = `${ stickyNavSpacing }px`; } else { if ( window.innerWidth > 900 ) { stickyNav.style.top = `${ initialNavY }px` || 0; } else { stickyNav.style.top = 0; } } // Updates the main header margin if the sale banner grows // This margin is what accounts for the sale banner and the sticky nav height, since they are `position: fixed` // and the header would be behind them without the margin if ( landingHeader ) { landingHeader.style.marginTop = ! isSmallScreen ? `${ headerSpacing || 0 }px` : null; } // Some pages are structured in a different way. // This spacing is the same as the above, but for pages relying on padding instead of margin if ( heroHeader ) { heroHeader.style.paddingTop = ! isSmallScreen ? `${ headerSpacing || 0 }px` : null; } } document.querySelectorAll( "[data-time-unit]" ).forEach( function( element ) { const unitOfTime = element.getAttribute( "data-time-unit" ); timeUnitElements[ unitOfTime ] = element; } ); intervalId = setInterval( updateCountdown, 1000 ); closeDiscountBannerButton.addEventListener( 'click', function closeDiscountBanner( event ) { document.body.classList.remove( 'has-jpcom-banner' ); // Record the event via Tracks. _tkq = window._tkq || []; _tkq.push( [ 'recordEvent', 'jetpack_com_discount_banner_close_button_click', { banner_title: bannerTitle } ] ); document.querySelector( '.jpcom-banner' ).remove(); resizeBanner(); } ); jpcomBannerCtaButton.addEventListener( 'click', function onGoToPricingPage( event ) { // Record the event via Tracks. _tkq = window._tkq || []; _tkq.push( [ 'recordEvent', 'jetpack_com_discount_banner_cta_button_click', { banner_title: bannerTitle } ] ); } ); // This code runs once after the page load, and again for every resize. // The sale banner size does not have a fixed height, so we can't just rely on CSS for certain viewports window.addEventListener( 'load', resizeBanner ); window.addEventListener( 'resize', function () { clearTimeout( resizeId ); resizeId = setTimeout( resizeBanner, 100 ); } ); } )(); </script> </div> <header id='jetpack-header' class="header js-header force-opaque"> <nav class="header__content"> <a class="header__skip" href="#content"> Skip to main content </a> <a href="https://jetpack.com/" aria-label="Jetpack home" class="home-link header__home-link"> <svg class="jetpack-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 139.93 38" aria-hidden="true" width="140" height="38" > <path class="jetpack-emblem" d="M19,0A19,19,0,1,0,38,19,19,19,0,0,0,19,0ZM18,22.15H8.56L18,3.73Zm1.92,12.08V15.81h9.47Z"/> <path d="M49.06,31.55c-.54-.84-1.05-1.67-1.56-2.47,2.68-1.63,3.59-2.94,3.59-5.4V9.43H47.94V6.71h6.7V23C54.64,27.09,53.45,29.41,49.06,31.55Z"/> <path d="M77.16,21.83c0,1.38,1,1.52,1.63,1.52a9.6,9.6,0,0,0,2.32-.43v2.53A10.63,10.63,0,0,1,77.6,26c-1.75,0-3.78-.65-3.78-3.69V14.87H72V12.29h1.84V8.48h3.34v3.81h4.21v2.58H77.16Z"/> <path d="M84.12,32.81V12.26h3.19v1.23a7,7,0,0,1,4.43-1.6c3,0,5.4,2.11,5.4,6.64S94.53,26,90.21,26a12.79,12.79,0,0,1-2.75-.33v7.11H84.12Zm6.75-18.16a5.38,5.38,0,0,0-3.38,1.49v7a11.81,11.81,0,0,0,2.51.26c2.35,0,3.69-1.49,3.69-4.61C93.69,15.92,92.72,14.65,90.87,14.65Z"/> <path d="M110.27,25.71h-3.12V24.22h-.08A6.89,6.89,0,0,1,102.65,26,3.62,3.62,0,0,1,99,22.12c0-3.45,2.94-4.1,5-4.39l2.94-.4v-.4c0-1.81-.73-2.39-2.43-2.39a13.37,13.37,0,0,0-4.39.91l-.29-2.69a17,17,0,0,1,5.11-.87c3.26,0,5.37,1.31,5.37,5.19v8.63Zm-3.34-6.27-2.76.43a1.79,1.79,0,0,0-1.7,1.85,1.5,1.5,0,0,0,1.52,1.7,5.51,5.51,0,0,0,2.94-1.23Z"/> <path d="M124,25.27a12.15,12.15,0,0,1-4.17.76c-5,0-7-2.86-7-7,0-4.39,2.75-7.11,7.21-7.11a10.91,10.91,0,0,1,3.81.66v2.82a11.45,11.45,0,0,0-3.77-.76c-2,0-3.77,1.09-3.77,4.21,0,3.44,1.74,4.49,4,4.49a10,10,0,0,0,3.77-.83v2.79Z"/> <path d="M130.35,18.06c.29-.33.51-.66,4.72-5.77h4.35L134,18.67l6,7.07h-4.36l-5.18-6.38v6.38h-3.34v-19h3.34V18.06Z"/> <path d="M69.47,25.27a15.54,15.54,0,0,1-5,.76c-4.28,0-6.93-2.13-6.93-7.14,0-3.66,2.25-7,6.56-7s5.77,3,5.77,5.8c0,.95-.07,1.46-.11,2H61.17c.07,2.94,1.74,3.62,4.24,3.62a11.57,11.57,0,0,0,4-.83v2.79Zm-3-7.79c0-1.63-.55-3.05-2.32-3.05s-2.69,1.2-2.9,3.05Z"/> </svg> </a> <a class="header__mobile-btn mobile-btn js-mobile-btn" href="#mobile-menu" aria-expanded="false" style="display:none;" > <span class="mobile-btn__icon" aria-hidden="true"> <span class="mobile-btn__inner"></span> </span> <span class="mobile-btn__label"> Menu </span> </a> <div class="header__nav-wrapper js-mobile-menu" id="mobile-menu"> <ul class="header__sections-list js-nav-list"> <li class=""> <a class="header__menu-btn js-menu-btn" href="#" aria-expanded="false" > Products <svg class="gridicon gridicons-chevron-down" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M20 9l-8 8-8-8 1.414-1.414L12 14.172l6.586-6.586"/></g></svg> </a> <div id="products" class="header__submenu js-menu" tabindex="-1" aria-label=" Products menu " > <div class="header__submenu-content"> <div class="header__submenu-wrapper"> <button class="header__back-btn js-menu-back" style="display:none;"> <svg class="gridicon gridicons-chevron-left" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M14 20l-8-8 8-8 1.414 1.414L8.828 12l6.586 6.586"/></g></svg> Back </button> <ul class="header__submenu-categories-list"> <li> <a class="header__submenu-category header__submenu-link" href="https://jetpack.com/features/security/" > <span class="header__submenu-label"> Security </span> </a> <ul class="header__submenu-links-list"> <li> <a class="header__submenu-link" href="https://jetpack.com/upgrade/backup/" > <span class="header__submenu-label"> VaultPress Backup </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/upgrade/scan/" > <span class="header__submenu-label"> Scan </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/upgrade/anti-spam/" > <span class="header__submenu-label"> Akismet Anti-spam </span> </a> </li> </ul> </li> <li> <a class="header__submenu-category header__submenu-link" href="https://jetpack.com/features/performance/" > <span class="header__submenu-label"> Performance </span> </a> <ul class="header__submenu-links-list"> <li> <a class="header__submenu-link" href="https://jetpack.com/upgrade/search/" > <span class="header__submenu-label"> Site Search </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/boost/" > <span class="header__submenu-label"> Boost </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/videopress/" > <span class="header__submenu-label"> VideoPress </span> </a> </li> </ul> </li> <li> <a class="header__submenu-category header__submenu-link" href="https://jetpack.com/features/growth/" > <span class="header__submenu-label"> Growth </span> </a> <ul class="header__submenu-links-list"> <li> <a class="header__submenu-link" href="https://jetpack.com/ai/" > <span class="header__submenu-label"> AI Assistant </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/stats/" > <span class="header__submenu-label"> Stats </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/social/" > <span class="header__submenu-label"> Social </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpackcrm.com/?utm_medium=automattic_referred&#038;utm_source=jpcom_header" > <span class="header__submenu-label"> CRM </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/blaze/" > <span class="header__submenu-label"> Blaze </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/creator/" > <span class="header__submenu-label"> Creator </span> </a> </li> </ul> </li> <li> <a class="header__submenu-category header__submenu-link" href="https://jetpack.com/pro-dashboard/" > <span class="header__submenu-label"> Management </span> </a> <ul class="header__submenu-links-list"> <li> <a class="header__submenu-link" href="https://jetpack.com/for-agencies/" > <span class="header__submenu-label"> For Agencies </span> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/mobile/" > <span class="header__submenu-label"> Mobile app </span> </a> </li> </ul> </li> </ul> <div class="header__submenu-bundles-section"> <div class="header__submenu-bundles-wrapper"> <p class="header__submenu-category-title"> Product Bundles </p> <ul class="header__submenu-bundles-list"> <li> <a class="header__submenu-link" href="https://jetpack.com/complete/" > <p class="header__submenu-label"> <span> Complete </span> </p> <div class="header__submenu-bundle-icons"> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>VaultPress Backup</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path d="M17.0225 21.8095C17.0075 21.7046 17 21.6072 17 21.5173C17 21.2027 17.0749 20.9106 17.2247 20.6409C17.4195 20.2814 17.7116 20.0117 18.1011 19.8319L28.4382 16.1465C28.618 16.0866 28.8052 16.0566 29 16.0566L29.5618 16.1465L39.8989 19.8319C40.2884 20.0117 40.5805 20.2814 40.7753 20.6409C40.9251 20.9256 41 21.2177 41 21.5173C41 21.6072 40.9925 21.7046 40.9775 21.8095C40.9775 21.8244 40.97 21.8694 40.9551 21.9443C40.8352 22.4836 40.7004 23.0304 40.5506 23.5847C40.4007 24.1241 40.1311 25.0454 39.7416 26.3488C39.3521 27.6521 38.8727 28.9405 38.3034 30.2139C37.7491 31.4874 37.0899 32.8656 36.3258 34.3488C35.5768 35.8169 34.6554 37.2626 33.5618 38.6859C32.4831 40.1091 31.3296 41.375 30.1011 42.4836C29.8015 42.7832 29.427 42.933 28.9775 42.933C28.5581 42.933 28.1985 42.7832 27.8989 42.4836C26.3708 41.1203 24.9551 39.4799 23.6517 37.5623C22.3483 35.6447 21.3146 33.8619 20.5506 32.2139C19.7865 30.566 19.1124 28.8956 18.5281 27.2027C17.9588 25.4948 17.5768 24.2514 17.382 23.4724C17.2022 22.6933 17.0824 22.139 17.0225 21.8095ZM18.0112 21.9443C18.0412 22.139 18.1011 22.4387 18.191 22.8432C18.2959 23.2327 18.4831 23.8993 18.7528 24.8432C19.0225 25.772 19.3221 26.7308 19.6517 27.7196C19.9963 28.6933 20.4532 29.8244 21.0225 31.1128C21.6067 32.3862 22.2285 33.6072 22.8876 34.7757C23.5618 35.9443 24.3708 37.1428 25.3146 38.3712C26.2584 39.5997 27.2547 40.6859 28.3034 41.6297C28.5131 41.7795 28.7453 41.8544 29 41.8544C29.2547 41.8544 29.4719 41.7795 29.6517 41.6297C31.1049 40.3263 32.4457 38.7608 33.6742 36.933C34.9176 35.1053 35.8914 33.4199 36.5955 31.8769C37.3146 30.3188 37.9513 28.7158 38.5056 27.0679C39.0599 25.405 39.4195 24.2289 39.5843 23.5398C39.764 22.8506 39.8839 22.3188 39.9438 21.9443C39.9588 21.8694 39.9663 21.7945 39.9663 21.7196C39.9813 21.5548 39.9438 21.39 39.8539 21.2252C39.7341 20.9855 39.5543 20.8207 39.3146 20.7308L29.3371 17.1353C29.2921 17.1353 29.2322 17.1278 29.1573 17.1128C29.0824 17.0978 29.0225 17.0903 28.9775 17.0903L28.6629 17.1353L18.6854 20.7308C18.4457 20.8207 18.2659 20.9855 18.1461 21.2252C18.0562 21.39 18.0037 21.5623 17.9888 21.742C17.9888 21.8169 17.9963 21.8844 18.0112 21.9443ZM21.7865 22.8432H25.5618L28.9775 31.6072L32.4382 22.8432H36.2135C36.1236 23.0679 36.0037 23.3975 35.8539 23.8319C35.7041 24.2514 35.5618 24.6334 35.427 24.978C35.2921 25.3226 35.1498 25.6447 35 25.9443C34.97 26.0042 34.9176 26.0491 34.8427 26.0791C34.7828 26.1091 34.7079 26.139 34.618 26.169C34.5281 26.184 34.4607 26.199 34.4157 26.2139C34.3408 26.2589 34.2734 26.3113 34.2135 26.3712C34.1685 26.4162 34.1236 26.4836 34.0787 26.5735C34.0487 26.6484 34.0187 26.7083 33.9888 26.7533C33.9738 26.7982 33.9438 26.8806 33.8989 27.0005C33.8689 27.1053 33.8464 27.1727 33.8315 27.2027L33.2921 28.551C31.6742 32.6409 30.7154 35.0679 30.4157 35.8319H27.5843L26.3708 32.8656C26.2509 32.5061 26.0412 31.9668 25.7416 31.2477C25.6217 30.8881 25.412 30.3488 25.1124 29.6297L24.4382 27.9668C24.3783 27.8319 24.3109 27.6521 24.236 27.4274C24.161 27.2027 24.0787 27.0005 23.9888 26.8207C23.9139 26.6409 23.809 26.4686 23.6742 26.3038C23.6142 26.2439 23.5468 26.2065 23.4719 26.1915C23.397 26.1615 23.3146 26.1465 23.2247 26.1465C23.1348 26.1465 23.0749 26.139 23.0449 26.1241C22.6704 25.2102 22.2509 24.1166 21.7865 22.8432Z" fill="#F6F6F4"/> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Akismet Anti-Spam</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <g clip-path="url(#clip0_3682_9359)"> <path d="M30.6446 22.0212L35.6566 35.1915C36.0889 36.3184 36.7529 36.7269 37.8885 36.8223C37.93 36.8242 37.9706 36.8346 38.008 36.8528C38.0453 36.871 38.0785 36.8967 38.1055 36.9282C38.1325 36.9598 38.1527 36.9965 38.165 37.0361C38.1772 37.0758 38.1812 37.1176 38.1767 37.1588C38.1783 37.2014 38.1715 37.2439 38.1567 37.2839C38.1418 37.3239 38.1191 37.3605 38.09 37.3916C38.0609 37.4228 38.0258 37.4478 37.9869 37.4654C37.9481 37.4829 37.9061 37.4925 37.8634 37.4938H32.3737C32.3293 37.4948 32.2852 37.4869 32.244 37.4705C32.2027 37.454 32.1652 37.4294 32.1338 37.3981C32.1023 37.3668 32.0775 37.3295 32.0609 37.2884C32.0442 37.2472 32.0361 37.2032 32.037 37.1588C32.0337 37.1158 32.0394 37.0725 32.0537 37.0318C32.068 36.9911 32.0906 36.9537 32.12 36.9221C32.1494 36.8905 32.185 36.8654 32.2247 36.8482C32.2643 36.831 32.307 36.8222 32.3502 36.8223C32.9015 36.8223 33.5265 36.6783 33.5265 36.0069C33.5216 35.7269 33.4642 35.4503 33.3573 35.1915L32.1544 32.0003C32.1059 31.8563 32.0824 31.8077 31.9383 31.8077H27.357C26.6365 31.8077 25.7485 31.8077 25.3397 32.7202L24.2433 35.1915C24.1318 35.4157 24.0663 35.66 24.0507 35.9099C24.0507 36.7738 25.1799 36.8223 25.7735 36.8223C25.8167 36.8222 25.8595 36.831 25.8991 36.8482C25.9387 36.8654 25.9744 36.8905 26.0038 36.9221C26.0332 36.9537 26.0558 36.9911 26.07 37.0318C26.0843 37.0725 26.09 37.1158 26.0868 37.1588C26.0877 37.2032 26.0795 37.2474 26.0627 37.2885C26.046 37.3297 26.021 37.367 25.9893 37.3982C25.9577 37.4294 25.92 37.4538 25.8786 37.47C25.8372 37.4861 25.7929 37.4937 25.7485 37.4922H20.8774C20.8331 37.4933 20.7891 37.4853 20.7479 37.4689C20.7068 37.4524 20.6694 37.4278 20.638 37.3965C20.6067 37.3652 20.5821 37.3278 20.5656 37.2867C20.5491 37.2456 20.5412 37.2015 20.5423 37.1573C20.539 37.1142 20.5447 37.071 20.559 37.0302C20.5733 36.9895 20.5959 36.9522 20.6253 36.9206C20.6547 36.889 20.6903 36.8638 20.73 36.8466C20.7696 36.8294 20.8123 36.8206 20.8555 36.8208C22.0318 36.7488 22.4218 36.1947 22.8713 35.1899L28.657 22.5236C28.9217 21.9711 29.4981 21.4922 30.0259 21.4922C30.4049 21.4938 30.5255 21.7097 30.6446 22.0212ZM26.2591 30.6089C26.2301 30.6516 26.2133 30.7014 26.2105 30.7529C26.2105 30.8014 26.2591 30.8249 26.3546 30.8249H31.1082C31.4434 30.8249 31.5875 30.7529 31.5875 30.5369C31.587 30.4285 31.5624 30.3216 31.5154 30.2239L30.1951 26.6727C29.8818 25.8572 29.4276 24.7789 29.2835 23.8899C29.2835 23.843 29.2584 23.8179 29.2349 23.8179C29.2115 23.8179 29.188 23.843 29.188 23.8899C29.0077 24.5011 28.7745 25.0955 28.491 25.6663L26.2591 30.6089Z" fill="#F6F6F4"/> <path d="M30.6446 22.0212L35.6566 35.1915C36.0889 36.3184 36.7529 36.7269 37.8885 36.8223C37.93 36.8242 37.9706 36.8346 38.008 36.8528C38.0453 36.871 38.0785 36.8967 38.1055 36.9282C38.1325 36.9598 38.1527 36.9965 38.165 37.0361C38.1772 37.0758 38.1812 37.1176 38.1767 37.1588C38.1783 37.2014 38.1715 37.2439 38.1567 37.2839C38.1418 37.3239 38.1191 37.3605 38.09 37.3916C38.0609 37.4228 38.0258 37.4478 37.9869 37.4654C37.9481 37.4829 37.9061 37.4925 37.8634 37.4938H32.3737C32.3293 37.4948 32.2852 37.4869 32.244 37.4705C32.2027 37.454 32.1653 37.4294 32.1338 37.3981C32.1023 37.3668 32.0775 37.3295 32.0609 37.2884C32.0442 37.2472 32.0361 37.2032 32.037 37.1588C32.0337 37.1158 32.0394 37.0725 32.0537 37.0318C32.068 36.9911 32.0906 36.9537 32.12 36.9221C32.1494 36.8905 32.185 36.8654 32.2247 36.8482C32.2643 36.831 32.307 36.8222 32.3502 36.8223C32.9015 36.8223 33.5265 36.6783 33.5265 36.0069C33.5216 35.7269 33.4642 35.4503 33.3573 35.1915L32.1544 32.0003C32.1059 31.8563 32.0824 31.8077 31.9383 31.8077H27.357C26.6365 31.8077 25.7485 31.8077 25.3397 32.7202L24.2433 35.1915C24.1318 35.4157 24.0663 35.66 24.0507 35.9099C24.0507 36.7738 25.1799 36.8223 25.7735 36.8223C25.8167 36.8222 25.8595 36.831 25.8991 36.8482C25.9387 36.8654 25.9744 36.8905 26.0038 36.9221C26.0332 36.9537 26.0558 36.9911 26.07 37.0318C26.0843 37.0725 26.09 37.1158 26.0868 37.1588C26.0877 37.2032 26.0795 37.2474 26.0627 37.2885C26.046 37.3297 26.021 37.367 25.9893 37.3982C25.9577 37.4294 25.92 37.4538 25.8786 37.47C25.8372 37.4861 25.7929 37.4937 25.7485 37.4922H20.8774C20.8331 37.4933 20.7891 37.4853 20.7479 37.4689C20.7068 37.4524 20.6694 37.4278 20.638 37.3965C20.6067 37.3652 20.5821 37.3278 20.5656 37.2867C20.5491 37.2456 20.5412 37.2015 20.5423 37.1573C20.539 37.1142 20.5447 37.071 20.559 37.0302C20.5733 36.9895 20.5959 36.9522 20.6253 36.9206C20.6547 36.889 20.6903 36.8638 20.73 36.8466C20.7696 36.8294 20.8123 36.8206 20.8555 36.8208C22.0318 36.7488 22.4218 36.1947 22.8713 35.1899L28.657 22.5236C28.9217 21.9711 29.4981 21.4922 30.0259 21.4922C30.4049 21.4938 30.5255 21.7097 30.6446 22.0212ZM26.2591 30.6089C26.2301 30.6516 26.2133 30.7014 26.2105 30.7529C26.2105 30.8014 26.2591 30.8249 26.3546 30.8249H31.1082C31.4434 30.8249 31.5875 30.7529 31.5875 30.5369C31.587 30.4285 31.5624 30.3216 31.5154 30.2239L30.1951 26.6727C29.8818 25.8572 29.4276 24.7789 29.2835 23.8899C29.2835 23.843 29.2584 23.8179 29.2349 23.8179C29.2115 23.8179 29.188 23.843 29.188 23.8899C29.0077 24.5011 28.7745 25.0955 28.491 25.6663L26.2591 30.6089Z" fill="#F6F6F4"/> <path d="M39.6723 30.0451C39.6723 30.6617 39.3231 31.0108 38.6919 31.0108C38.0607 31.0108 37.8101 30.6899 37.8101 30.2C37.8101 29.5834 38.175 29.2344 38.7905 29.2344C39.4061 29.2344 39.6723 29.5693 39.6723 30.0451Z" fill="#F6F6F4"/> <path d="M20.8632 30.0642C20.8632 30.6793 20.5124 31.0299 19.8827 31.0299C19.2531 31.0299 18.9978 30.7075 18.9978 30.2176C18.9978 29.6025 19.3627 29.252 19.9783 29.252C20.5938 29.252 20.8632 29.5884 20.8632 30.0642Z" fill="#F6F6F4"/> </g> <defs> <clipPath id="clip0_3682_9359"> <rect width="20.6667" height="16" fill="white" transform="translate(19 21.4941)"/> </clipPath> </defs> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Scan</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.7738 16.7441L38.9716 20.925V27.1575C38.9716 32.4704 35.5594 37.5008 30.7477 39.0877C30.1154 39.2963 29.4322 39.2963 28.7999 39.0877C23.9882 37.5008 20.5759 32.4704 20.5759 27.1575V20.925L29.7738 16.7441ZM22.6199 22.2411V27.1575C22.6199 31.6719 25.543 35.8613 29.4401 37.1466C29.6566 37.218 29.891 37.218 30.1075 37.1466C34.0046 35.8613 36.9277 31.6719 36.9277 27.1575V22.2411L29.7738 18.9894L22.6199 22.2411Z" fill="#F6F6F4"/> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Search</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path d="M18.75 38.1677L25.0577 32.6484" stroke="#F6F6F4" stroke-width="1.75"/> <circle cx="30.5769" cy="27.9172" r="7.79808" stroke="#F6F6F4" stroke-width="1.75"/> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Social</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M34.0191 20.0566V37.6789L23.9806 34.637V40.161H22.0984L22.0984 34.0666L18.679 33.0304C17.3563 32.6296 16.4518 31.4103 16.4518 30.0282V27.7073C16.4518 26.3252 17.3563 25.106 18.679 24.7051L34.0191 20.0566ZM32.1369 35.1418L23.9806 32.6702L23.9806 25.0653L32.1369 22.5937V35.1418ZM22.0984 25.6357L22.0984 32.0999L19.2249 31.2291C18.6958 31.0688 18.334 30.5811 18.334 30.0282V27.7073C18.334 27.1545 18.6958 26.6668 19.2249 26.5065L22.0984 25.6357ZM36.529 29.8089H41.5483V27.9267H36.529V29.8089ZM41.5483 35.1418L36.529 33.887V32.0048L41.5483 33.2596V35.1418ZM36.529 25.7308L41.5483 24.476V22.5937L36.529 23.8485V25.7308Z" fill="#F6F6F4"/> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>VideoPress</title> <path opacity="0.5" d="M0 7.0497C0 3.42917 2.93502 0.494141 6.55555 0.494141H51.4444C55.065 0.494141 58 3.42916 58 7.0497V51.9386C58 55.5591 55.065 58.4941 51.4444 58.4941H6.55556C2.93502 58.4941 0 55.5591 0 51.9386V7.0497Z" fill="url(#paint0_linear_3682_9380)"/> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M19.3492 21.2051C20.3982 21.2051 21.3198 21.8978 21.6071 22.9021L24.4468 32.8324C24.4497 32.8425 24.4544 32.8516 24.4604 32.8596L27.8246 21.2051H29.7067H34.9092C38.5557 21.2051 41 23.5668 41 27.1421C41 30.7585 38.4916 33.0136 34.7489 33.0136H32.2805H29.0998L28.4818 34.9177C27.9277 36.6253 26.3306 37.7824 24.5279 37.7824C22.7253 37.7824 21.1282 36.6253 20.574 34.9177L17.1154 24.2604C16.6256 22.7512 17.7561 21.2051 19.3492 21.2051ZM30.2495 29.471H33.8513C35.4141 29.471 36.3518 28.5772 36.3518 27.1421C36.3518 25.6989 35.4141 24.846 33.8513 24.846H31.7504L30.2495 29.471Z" fill="#F6F6F4"/> <defs> <linearGradient id="paint0_linear_3682_9380" x1="19.3333" y1="-0.857554" x2="47.3224" y2="75.5073" gradientUnits="userSpaceOnUse"> <stop stop-color="#F6F6F4"/> <stop offset="0.526042" stop-color="#F7F4EA"/> <stop offset="1" stop-color="#DDEDD5"/> </linearGradient> </defs> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Boost</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M17.9082 19.3957L26.7933 28.981L17.9082 38.5662L18.9841 39.5634L28.3314 29.4796L28.7936 28.981L28.3314 28.4823L18.9841 18.3984L17.9082 19.3957ZM29.124 19.3957L38.009 28.981L29.124 38.5662L30.1998 39.5634L39.5471 29.4796L40.0093 28.981L39.5471 28.4823L30.1998 18.3984L29.124 19.3957Z" fill="#F6F6F4"/> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>CRM</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path d="M29.8 37.4941L29.8 34.2941C29.8 32.5268 28.3673 31.0941 26.6 31.0941L20.2 31.0941C18.4327 31.0941 17 32.5268 17 34.2941V37.4941" stroke="#F6F6F4" stroke-width="1.75"/> <path d="M41 37.4941V34.2941C41 32.5268 39.5673 31.0941 37.8 31.0941H33.8" stroke="#F6F6F4" stroke-width="1.75"/> <circle cx="34.6" cy="23.8945" r="3.125" stroke="#F6F6F4" stroke-width="1.75"/> <circle cx="23.4" cy="23.8945" r="3.125" stroke="#F6F6F4" stroke-width="1.75"/> </svg> </div> </a> </li> <li> <a class="header__submenu-link" href="https://jetpack.com/features/security/" > <p class="header__submenu-label"> <span> Security </span> </p> <div class="header__submenu-bundle-icons"> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>VaultPress Backup</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path d="M17.0225 21.8095C17.0075 21.7046 17 21.6072 17 21.5173C17 21.2027 17.0749 20.9106 17.2247 20.6409C17.4195 20.2814 17.7116 20.0117 18.1011 19.8319L28.4382 16.1465C28.618 16.0866 28.8052 16.0566 29 16.0566L29.5618 16.1465L39.8989 19.8319C40.2884 20.0117 40.5805 20.2814 40.7753 20.6409C40.9251 20.9256 41 21.2177 41 21.5173C41 21.6072 40.9925 21.7046 40.9775 21.8095C40.9775 21.8244 40.97 21.8694 40.9551 21.9443C40.8352 22.4836 40.7004 23.0304 40.5506 23.5847C40.4007 24.1241 40.1311 25.0454 39.7416 26.3488C39.3521 27.6521 38.8727 28.9405 38.3034 30.2139C37.7491 31.4874 37.0899 32.8656 36.3258 34.3488C35.5768 35.8169 34.6554 37.2626 33.5618 38.6859C32.4831 40.1091 31.3296 41.375 30.1011 42.4836C29.8015 42.7832 29.427 42.933 28.9775 42.933C28.5581 42.933 28.1985 42.7832 27.8989 42.4836C26.3708 41.1203 24.9551 39.4799 23.6517 37.5623C22.3483 35.6447 21.3146 33.8619 20.5506 32.2139C19.7865 30.566 19.1124 28.8956 18.5281 27.2027C17.9588 25.4948 17.5768 24.2514 17.382 23.4724C17.2022 22.6933 17.0824 22.139 17.0225 21.8095ZM18.0112 21.9443C18.0412 22.139 18.1011 22.4387 18.191 22.8432C18.2959 23.2327 18.4831 23.8993 18.7528 24.8432C19.0225 25.772 19.3221 26.7308 19.6517 27.7196C19.9963 28.6933 20.4532 29.8244 21.0225 31.1128C21.6067 32.3862 22.2285 33.6072 22.8876 34.7757C23.5618 35.9443 24.3708 37.1428 25.3146 38.3712C26.2584 39.5997 27.2547 40.6859 28.3034 41.6297C28.5131 41.7795 28.7453 41.8544 29 41.8544C29.2547 41.8544 29.4719 41.7795 29.6517 41.6297C31.1049 40.3263 32.4457 38.7608 33.6742 36.933C34.9176 35.1053 35.8914 33.4199 36.5955 31.8769C37.3146 30.3188 37.9513 28.7158 38.5056 27.0679C39.0599 25.405 39.4195 24.2289 39.5843 23.5398C39.764 22.8506 39.8839 22.3188 39.9438 21.9443C39.9588 21.8694 39.9663 21.7945 39.9663 21.7196C39.9813 21.5548 39.9438 21.39 39.8539 21.2252C39.7341 20.9855 39.5543 20.8207 39.3146 20.7308L29.3371 17.1353C29.2921 17.1353 29.2322 17.1278 29.1573 17.1128C29.0824 17.0978 29.0225 17.0903 28.9775 17.0903L28.6629 17.1353L18.6854 20.7308C18.4457 20.8207 18.2659 20.9855 18.1461 21.2252C18.0562 21.39 18.0037 21.5623 17.9888 21.742C17.9888 21.8169 17.9963 21.8844 18.0112 21.9443ZM21.7865 22.8432H25.5618L28.9775 31.6072L32.4382 22.8432H36.2135C36.1236 23.0679 36.0037 23.3975 35.8539 23.8319C35.7041 24.2514 35.5618 24.6334 35.427 24.978C35.2921 25.3226 35.1498 25.6447 35 25.9443C34.97 26.0042 34.9176 26.0491 34.8427 26.0791C34.7828 26.1091 34.7079 26.139 34.618 26.169C34.5281 26.184 34.4607 26.199 34.4157 26.2139C34.3408 26.2589 34.2734 26.3113 34.2135 26.3712C34.1685 26.4162 34.1236 26.4836 34.0787 26.5735C34.0487 26.6484 34.0187 26.7083 33.9888 26.7533C33.9738 26.7982 33.9438 26.8806 33.8989 27.0005C33.8689 27.1053 33.8464 27.1727 33.8315 27.2027L33.2921 28.551C31.6742 32.6409 30.7154 35.0679 30.4157 35.8319H27.5843L26.3708 32.8656C26.2509 32.5061 26.0412 31.9668 25.7416 31.2477C25.6217 30.8881 25.412 30.3488 25.1124 29.6297L24.4382 27.9668C24.3783 27.8319 24.3109 27.6521 24.236 27.4274C24.161 27.2027 24.0787 27.0005 23.9888 26.8207C23.9139 26.6409 23.809 26.4686 23.6742 26.3038C23.6142 26.2439 23.5468 26.2065 23.4719 26.1915C23.397 26.1615 23.3146 26.1465 23.2247 26.1465C23.1348 26.1465 23.0749 26.139 23.0449 26.1241C22.6704 25.2102 22.2509 24.1166 21.7865 22.8432Z" fill="#F6F6F4"/> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Akismet Anti-Spam</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <g clip-path="url(#clip0_3682_9359)"> <path d="M30.6446 22.0212L35.6566 35.1915C36.0889 36.3184 36.7529 36.7269 37.8885 36.8223C37.93 36.8242 37.9706 36.8346 38.008 36.8528C38.0453 36.871 38.0785 36.8967 38.1055 36.9282C38.1325 36.9598 38.1527 36.9965 38.165 37.0361C38.1772 37.0758 38.1812 37.1176 38.1767 37.1588C38.1783 37.2014 38.1715 37.2439 38.1567 37.2839C38.1418 37.3239 38.1191 37.3605 38.09 37.3916C38.0609 37.4228 38.0258 37.4478 37.9869 37.4654C37.9481 37.4829 37.9061 37.4925 37.8634 37.4938H32.3737C32.3293 37.4948 32.2852 37.4869 32.244 37.4705C32.2027 37.454 32.1652 37.4294 32.1338 37.3981C32.1023 37.3668 32.0775 37.3295 32.0609 37.2884C32.0442 37.2472 32.0361 37.2032 32.037 37.1588C32.0337 37.1158 32.0394 37.0725 32.0537 37.0318C32.068 36.9911 32.0906 36.9537 32.12 36.9221C32.1494 36.8905 32.185 36.8654 32.2247 36.8482C32.2643 36.831 32.307 36.8222 32.3502 36.8223C32.9015 36.8223 33.5265 36.6783 33.5265 36.0069C33.5216 35.7269 33.4642 35.4503 33.3573 35.1915L32.1544 32.0003C32.1059 31.8563 32.0824 31.8077 31.9383 31.8077H27.357C26.6365 31.8077 25.7485 31.8077 25.3397 32.7202L24.2433 35.1915C24.1318 35.4157 24.0663 35.66 24.0507 35.9099C24.0507 36.7738 25.1799 36.8223 25.7735 36.8223C25.8167 36.8222 25.8595 36.831 25.8991 36.8482C25.9387 36.8654 25.9744 36.8905 26.0038 36.9221C26.0332 36.9537 26.0558 36.9911 26.07 37.0318C26.0843 37.0725 26.09 37.1158 26.0868 37.1588C26.0877 37.2032 26.0795 37.2474 26.0627 37.2885C26.046 37.3297 26.021 37.367 25.9893 37.3982C25.9577 37.4294 25.92 37.4538 25.8786 37.47C25.8372 37.4861 25.7929 37.4937 25.7485 37.4922H20.8774C20.8331 37.4933 20.7891 37.4853 20.7479 37.4689C20.7068 37.4524 20.6694 37.4278 20.638 37.3965C20.6067 37.3652 20.5821 37.3278 20.5656 37.2867C20.5491 37.2456 20.5412 37.2015 20.5423 37.1573C20.539 37.1142 20.5447 37.071 20.559 37.0302C20.5733 36.9895 20.5959 36.9522 20.6253 36.9206C20.6547 36.889 20.6903 36.8638 20.73 36.8466C20.7696 36.8294 20.8123 36.8206 20.8555 36.8208C22.0318 36.7488 22.4218 36.1947 22.8713 35.1899L28.657 22.5236C28.9217 21.9711 29.4981 21.4922 30.0259 21.4922C30.4049 21.4938 30.5255 21.7097 30.6446 22.0212ZM26.2591 30.6089C26.2301 30.6516 26.2133 30.7014 26.2105 30.7529C26.2105 30.8014 26.2591 30.8249 26.3546 30.8249H31.1082C31.4434 30.8249 31.5875 30.7529 31.5875 30.5369C31.587 30.4285 31.5624 30.3216 31.5154 30.2239L30.1951 26.6727C29.8818 25.8572 29.4276 24.7789 29.2835 23.8899C29.2835 23.843 29.2584 23.8179 29.2349 23.8179C29.2115 23.8179 29.188 23.843 29.188 23.8899C29.0077 24.5011 28.7745 25.0955 28.491 25.6663L26.2591 30.6089Z" fill="#F6F6F4"/> <path d="M30.6446 22.0212L35.6566 35.1915C36.0889 36.3184 36.7529 36.7269 37.8885 36.8223C37.93 36.8242 37.9706 36.8346 38.008 36.8528C38.0453 36.871 38.0785 36.8967 38.1055 36.9282C38.1325 36.9598 38.1527 36.9965 38.165 37.0361C38.1772 37.0758 38.1812 37.1176 38.1767 37.1588C38.1783 37.2014 38.1715 37.2439 38.1567 37.2839C38.1418 37.3239 38.1191 37.3605 38.09 37.3916C38.0609 37.4228 38.0258 37.4478 37.9869 37.4654C37.9481 37.4829 37.9061 37.4925 37.8634 37.4938H32.3737C32.3293 37.4948 32.2852 37.4869 32.244 37.4705C32.2027 37.454 32.1653 37.4294 32.1338 37.3981C32.1023 37.3668 32.0775 37.3295 32.0609 37.2884C32.0442 37.2472 32.0361 37.2032 32.037 37.1588C32.0337 37.1158 32.0394 37.0725 32.0537 37.0318C32.068 36.9911 32.0906 36.9537 32.12 36.9221C32.1494 36.8905 32.185 36.8654 32.2247 36.8482C32.2643 36.831 32.307 36.8222 32.3502 36.8223C32.9015 36.8223 33.5265 36.6783 33.5265 36.0069C33.5216 35.7269 33.4642 35.4503 33.3573 35.1915L32.1544 32.0003C32.1059 31.8563 32.0824 31.8077 31.9383 31.8077H27.357C26.6365 31.8077 25.7485 31.8077 25.3397 32.7202L24.2433 35.1915C24.1318 35.4157 24.0663 35.66 24.0507 35.9099C24.0507 36.7738 25.1799 36.8223 25.7735 36.8223C25.8167 36.8222 25.8595 36.831 25.8991 36.8482C25.9387 36.8654 25.9744 36.8905 26.0038 36.9221C26.0332 36.9537 26.0558 36.9911 26.07 37.0318C26.0843 37.0725 26.09 37.1158 26.0868 37.1588C26.0877 37.2032 26.0795 37.2474 26.0627 37.2885C26.046 37.3297 26.021 37.367 25.9893 37.3982C25.9577 37.4294 25.92 37.4538 25.8786 37.47C25.8372 37.4861 25.7929 37.4937 25.7485 37.4922H20.8774C20.8331 37.4933 20.7891 37.4853 20.7479 37.4689C20.7068 37.4524 20.6694 37.4278 20.638 37.3965C20.6067 37.3652 20.5821 37.3278 20.5656 37.2867C20.5491 37.2456 20.5412 37.2015 20.5423 37.1573C20.539 37.1142 20.5447 37.071 20.559 37.0302C20.5733 36.9895 20.5959 36.9522 20.6253 36.9206C20.6547 36.889 20.6903 36.8638 20.73 36.8466C20.7696 36.8294 20.8123 36.8206 20.8555 36.8208C22.0318 36.7488 22.4218 36.1947 22.8713 35.1899L28.657 22.5236C28.9217 21.9711 29.4981 21.4922 30.0259 21.4922C30.4049 21.4938 30.5255 21.7097 30.6446 22.0212ZM26.2591 30.6089C26.2301 30.6516 26.2133 30.7014 26.2105 30.7529C26.2105 30.8014 26.2591 30.8249 26.3546 30.8249H31.1082C31.4434 30.8249 31.5875 30.7529 31.5875 30.5369C31.587 30.4285 31.5624 30.3216 31.5154 30.2239L30.1951 26.6727C29.8818 25.8572 29.4276 24.7789 29.2835 23.8899C29.2835 23.843 29.2584 23.8179 29.2349 23.8179C29.2115 23.8179 29.188 23.843 29.188 23.8899C29.0077 24.5011 28.7745 25.0955 28.491 25.6663L26.2591 30.6089Z" fill="#F6F6F4"/> <path d="M39.6723 30.0451C39.6723 30.6617 39.3231 31.0108 38.6919 31.0108C38.0607 31.0108 37.8101 30.6899 37.8101 30.2C37.8101 29.5834 38.175 29.2344 38.7905 29.2344C39.4061 29.2344 39.6723 29.5693 39.6723 30.0451Z" fill="#F6F6F4"/> <path d="M20.8632 30.0642C20.8632 30.6793 20.5124 31.0299 19.8827 31.0299C19.2531 31.0299 18.9978 30.7075 18.9978 30.2176C18.9978 29.6025 19.3627 29.252 19.9783 29.252C20.5938 29.252 20.8632 29.5884 20.8632 30.0642Z" fill="#F6F6F4"/> </g> <defs> <clipPath id="clip0_3682_9359"> <rect width="20.6667" height="16" fill="white" transform="translate(19 21.4941)"/> </clipPath> </defs> </svg> <svg width="58" height="59" viewBox="0 0 58 59" fill="none" xmlns="http://www.w3.org/2000/svg"> <title>Scan</title> <rect class="jetpack-hero-product-background" y="0.494141" width="58" height="58" rx="4" fill="#2C3338"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M29.7738 16.7441L38.9716 20.925V27.1575C38.9716 32.4704 35.5594 37.5008 30.7477 39.0877C30.1154 39.2963 29.4322 39.2963 28.7999 39.0877C23.9882 37.5008 20.5759 32.4704 20.5759 27.1575V20.925L29.7738 16.7441ZM22.6199 22.2411V27.1575C22.6199 31.6719 25.543 35.8613 29.4401 37.1466C29.6566 37.218 29.891 37.218 30.1075 37.1466C34.0046 35.8613 36.9277 31.6719 36.9277 27.1575V22.2411L29.7738 18.9894L22.6199 22.2411Z" fill="#F6F6F4"/> </svg> </div> </a> </li> </ul> </div> </div> </div> </div> </div> </li> <li class=""> <a class="" href="https://jetpack.com/pricing/" > Pricing </a> </li> <li class=""> <a class="" href="https://jetpack.com/jetpack-partners/" > Partners </a> </li> <li class=""> <a class="" href="https://jetpack.com/support/" > Support </a> </li> <li class=""> <a class="" href="https://jetpack.com/blog/" > Blog </a> </li> <li class=""> <a class="" href="https://jetpack.com/gdpr/" > GDPR </a> </li> <li class="header__more js-more" style="display:none;"> <button class="header__menu-btn js-more-btn js-menu-btn" aria-expanded="false" hidden> More <svg class="gridicon gridicons-chevron-down" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M20 9l-8 8-8-8 1.414-1.414L12 14.172l6.586-6.586"/></g></svg> </button> <div class="header__submenu header__more-submenu js-menu" tabindex="-1" hidden> <div class="header__submenu-content"> <ul class="header__submenu-categories-list"> <li> <ul class="header__submenu-links-list js-more-container"></ul> </li> </ul> </div> </div> </li> </ul> <ul class="header__actions-list"> <li> <a class="header__search-btn jetpack-search-filter__link" href="/?s=" aria-labelledby="jetpack-search-label"> <span aria-hidden="true"> <svg class="gridicon gridicons-search" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M21 19l-5.154-5.154C16.574 12.742 17 11.42 17 10c0-3.866-3.134-7-7-7s-7 3.134-7 7 3.134 7 7 7c1.42 0 2.742-.426 3.846-1.154L19 21l2-2zM5 10c0-2.757 2.243-5 5-5s5 2.243 5 5-2.243 5-5 5-5-2.243-5-5z"/></g></svg> </span> <span id="jetpack-search-label" class="header__search-label">Search</span> </a> </li> <li class="header__user-menu user-menu "> <a class="header__action-link js-login" href="https://jetpack.com/login/"> Log in </a> </li> <li class="header__cta"> <a class="secondary-button js-get-started" href="https://jetpack.com/pricing/"> Get started </a> </li> </ul> </div> </nav> </header> <div class="in revolving-headers"> </div> </header> <div class="in j-content jp-support"> <div id="post-315869" class="post-315869 jetpack_support type-jetpack_support status-publish hentry jetpack_support_category-performance jetpack_support_tag-boost jetpack_support_tag-cornerstone-pages jetpack_support_tag-improve jetpack_support_tag-optimize jetpack_support_tag-speed"> <h1 class="entry-title">What can we help you with today?</h1> <div class="q-shell"> <form role="search" method="get" id="searchform" class="searchform" action="https://jetpack.com/"> <div> <label class="screen-reader-text" for="s">Search for:</label> <input type="text" class="jp-support-question" value="" name="s" id="s" autocomplete="off" autofocus placeholder="Ask a question or enter a search term&hellip;"> </div> </form> </div> <div class="l-side"> <div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/getting-started-with-jetpack/"><strong>Getting Started</strong></a></div><p>New to Jetpack? Here you can find information on installation, features, and troubleshooting.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/blog/build-your-own-jetpack-now-with-individual-plugins/"><strong>Build your own Jetpack</strong></a></div><p>Power your site with the best features for your site, with our individual plugins. Nothing more, nothing less.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/jetpack-pro-dashboard-instructions/"><strong>Jetpack Manage</strong></a></div><p>Manage multiple sites? Find out how Jetpack Manage can save you time and money. </p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/backup/"><strong>Jetpack VaultPress Backups</strong></a></div><p>Real-time backups, detailed activity log, and one-click restores to ensure you never lose your site.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/social/"><strong>Social</strong></a></div><p>Write once, post everywhere. Learn how Jetpack can integrate with your social media accounts.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/jetpack-stats/"><strong>Stats</strong></a></div><p>Want to keep track of the traffic your latest posts are getting? Jetpack Stats has you covered.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/security-features/"><strong>Security</strong></a></div><p>Jetpack includes state-of-the-art security tools that keep every bit of your site safe and sound.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/jetpack-anti-spam/"><strong>Akismet Anti-spam</strong></a></div><p>Tired of spam? So were we. Find out how to protect your comments and contact forms. </p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/blog/jetpack-mobile-app/"><strong>Jetpack Mobile App</strong></a></div><p>Everything you love about Jetpack, in your pocket and on the go. Manage your site from anywhere.</p></div><div class="widget widget-text"><div class="jp-support-categories"><a href="https://jetpack.com/support/getting-started-with-jetpack-videopress-via-the-jetpack-plugin/"><strong>VideoPress</strong></a></div><p>Host your videos on our servers rather than yours. Share high-quality ad-free content from your own player.</p></div> </div> <div class="r-side"> <div class="widget widget-text"><strong>What is Jetpack?</strong> <div class="textwidget"><p>Jetpack secures and improves your site by utilising the features and servers on WordPress.com.</p> </div> </div><div class="widget widget-text"><strong>Installing Jetpack</strong> <div class="textwidget">The easiest way to install Jetpack is from <a href="https://jetpack.com/install">our install page</a>. <br /><br /> If you need help you can <a href="https://jetpack.com/support/getting-started-with-jetpack/#install-jetpack">follow our step-by-step instructions to get going</a> or install manually by <a id="download-side" href="http://downloads.wordpress.org/plugin/jetpack.latest-stable.zip" class="">downloading the ZIP file</a> directly. <br /><br /> Finally, if you happen to have <a href="http://wp-cli.org/">WP-CLI</a> installed on your host, you can install Jetpack with this command: <br /><br /> <code>wp plugin install jetpack</code> </div> </div><div class="widget widget-text"><strong>Troubleshooting Help</strong> <div class="textwidget"><p>Check out these <a href="https://jetpack.com/support/getting-started-with-jetpack/troubleshooting-tips/">resources.</a></p> </div> </div><div class="widget widget-text"><strong>Still need help?</strong> <div class="textwidget"><p>Feel free to <a href="/contact-support/?rel=support">contact us.</a><br /> See our <a href="https://jetpack.com/support/scope-of-support/">scope of support.</a></p> </div> </div><div class="widget widget-text"><strong>Developers</strong> <div class="textwidget"><p>Want to run your site locally to test out Jetpack features? Want to use Featured Content or Social links in your themes? <a href="https://jetpack.com/support/jetpack-for-developers/">Look here!</a></p> </div> </div><div class="widget widget-text"><strong>Join the Jetpack Beta Group</strong> <div class="textwidget"><p>Would you like to help test future versions of Jetpack? <a href="https://jetpack.com/beta/">Join our Beta group</a>!</p> </div> </div><div class="widget widget-text"> <div id="jetpack-search-filters-5-wrapper" class="jetpack-instant-search-wrapper"> <div class="jetpack-search-form"><form role="search" method="get" id="searchform" class="searchform" action="https://jetpack.com/"> <div> <label class="screen-reader-text" for="s">Search for:</label> <input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Search" /> </div> <input type="hidden" name="orderby" value="" /><input type="hidden" name="order" value="" /></form></div></div></div><div class="widget widget-text"> <p></p> </div> </div> </div><!-- #post-## --> </div> <script> var support_data = { "words": [{"keyword":"$content_width","responses":[2372]},{"keyword":"-32300","responses":[2591]},{"keyword":"-32301","responses":[2591]},{"keyword":"200","responses":[2591]},{"keyword":"32601","responses":[2591]},{"keyword":"32700","responses":[2591]},{"keyword":"500","responses":[2591]},{"keyword":"accelerator","responses":[43708]},{"keyword":"access credentials","responses":[27861]},{"keyword":"actions","responses":[26849]},{"keyword":"activate","responses":[27861,27865,23848]},{"keyword":"activity","responses":[23429]},{"keyword":"activity log","responses":[120460,23668,23429]},{"keyword":"add","responses":[27861,27865,10188]},{"keyword":"address","responses":[59087,2332]},{"keyword":"add_theme_support","responses":[2532]},{"keyword":"admin","responses":[223693,16803]},{"keyword":"admin bar","responses":[2521]},{"keyword":"adminbar","responses":[16803,2521]},{"keyword":"ads","responses":[247556,232362,59048,14909]},{"keyword":"advertising","responses":[59048,14909]},{"keyword":"after the deadline","responses":[3635]},{"keyword":"afterthedeadline","responses":[3635]},{"keyword":"akismet","responses":[118410]},{"keyword":"allowlist","responses":[139807]},{"keyword":"analytics","responses":[95618,15234,14896,2470]},{"keyword":"antispam","responses":[2341]},{"keyword":"anywhere","responses":[10188]},{"keyword":"api","responses":[2541]},{"keyword":"appearance","responses":[148713,2451,2425]},{"keyword":"asset","responses":[43708]},{"keyword":"attempts","responses":[14406]},{"keyword":"attributes","responses":[205396]},{"keyword":"audio","responses":[95361]},{"keyword":"author","responses":[14425,14891]},{"keyword":"authors","responses":[14891]},{"keyword":"auto share","responses":[227920]},{"keyword":"auto-activated","responses":[156241,106321,97314,95618,92262,88411,83509,82575,54283,48571,23429,4500,3613,2972,2470,2521,2490]},{"keyword":"auto-share","responses":[315231]},{"keyword":"automatic renewal","responses":[205586]},{"keyword":"autoupdates","responses":[4500]},{"keyword":"avatar","responses":[2401]},{"keyword":"backup","responses":[233836,119273,82079,27861,27865,31375,23433,23668,23429]},{"keyword":"backups","responses":[233836,119273,27861,27865,31375,23433,23668,23429]},{"keyword":"backups not working","responses":[119273]},{"keyword":"bad news","responses":[2869]},{"keyword":"bandcamp","responses":[2324]},{"keyword":"banned","responses":[14406]},{"keyword":"bar","responses":[16803]},{"keyword":"beautiful","responses":[2388]},{"keyword":"beautiful math","responses":[2696]},{"keyword":"bee","responses":[2341]},{"keyword":"behavior","responses":[2341]},{"keyword":"billing","responses":[232492,205586]},{"keyword":"bing","responses":[3613]},{"keyword":"bio","responses":[14425]},{"keyword":"biography","responses":[14425]},{"keyword":"bit.ly","responses":[2465]},{"keyword":"bitly","responses":[2465]},{"keyword":"bitnami","responses":[141278]},{"keyword":"blank","responses":[120460,13903]},{"keyword":"blip.tv","responses":[2324]},{"keyword":"block","responses":[228038,149143,101094,97314,92497,88535,92262,88411,83509,83546,82575,63692,54283,20922,2372]},{"keyword":"block comment likes","responses":[20922]},{"keyword":"block editor","responses":[148713,106711,83509,83546,54283,46996]},{"keyword":"blocked","responses":[82575,14406]},{"keyword":"blocklist","responses":[139807]},{"keyword":"blocks","responses":[265573,265485,265450,232362,101094,83509,83546,65764,63692,54283,46996]},{"keyword":"blog","responses":[14425]},{"keyword":"bluesky","responses":[315231]},{"keyword":"book","responses":[88535,12477]},{"keyword":"booking","responses":[88535]},{"keyword":"books","responses":[12477]},{"keyword":"boost","responses":[315869,297599,265350,263513,248350,218398]},{"keyword":"box","responses":[2473]},{"keyword":"boxes","responses":[2473]},{"keyword":"broken","responses":[2341]},{"keyword":"brute force protection","responses":[82575]},{"keyword":"bundle","responses":[118410]},{"keyword":"business","responses":[59067]},{"keyword":"business hours","responses":[59067]},{"keyword":"business manager","responses":[2277]},{"keyword":"buttons","responses":[2358]},{"keyword":"cache","responses":[263513]},{"keyword":"caching","responses":[215333,215697,215345,215307,218261,218236]},{"keyword":"calendar","responses":[92497,92262]},{"keyword":"calendars","responses":[92262]},{"keyword":"calendly","responses":[92262]},{"keyword":"cancel plan","responses":[205586]},{"keyword":"cancellations","responses":[205586]},{"keyword":"captcha","responses":[2358]},{"keyword":"carousel","responses":[59120,2449]},{"keyword":"categories","responses":[14425]},{"keyword":"cdn","responses":[43708]},{"keyword":"change","responses":[10188]},{"keyword":"changes","responses":[2451]},{"keyword":"circle","responses":[2372]},{"keyword":"cli","responses":[5135]},{"keyword":"clich\u00e9","responses":[3635]},{"keyword":"click","responses":[2532]},{"keyword":"clone","responses":[82079]},{"keyword":"cloning","responses":[82079]},{"keyword":"cloudflare","responses":[14406,8064,2583]},{"keyword":"code","responses":[26849,2388]},{"keyword":"color","responses":[2451]},{"keyword":"comic","responses":[4299]},{"keyword":"comicpress","responses":[4299]},{"keyword":"comics","responses":[4299]},{"keyword":"comment","responses":[20922,2341,2300]},{"keyword":"comment blacklist","responses":[20922]},{"keyword":"comment like","responses":[20922]},{"keyword":"comment likes","responses":[20922]},{"keyword":"commentluv","responses":[2341]},{"keyword":"comments","responses":[122426,20922,3214,2521,2341,2300]},{"keyword":"comment_form","responses":[2341]},{"keyword":"conditional","responses":[65764,2425]},{"keyword":"conference","responses":[88411]},{"keyword":"configure","responses":[10188]},{"keyword":"conflicts","responses":[2583]},{"keyword":"connect","responses":[315231,300863,227920,217064,214398,27865,34911,2886,2566]},{"keyword":"connecting","responses":[2295]},{"keyword":"connection","responses":[300863,118309,107402,35020,34911,21508,2591,2295,2292,2277]},{"keyword":"connections","responses":[2295,2269]},{"keyword":"contact","responses":[59087,2490]},{"keyword":"contact form","responses":[106321,46996,2490]},{"keyword":"contact info","responses":[59087]},{"keyword":"contact me","responses":[2490]},{"keyword":"container","responses":[2532]},{"keyword":"content width","responses":[2372]},{"keyword":"contributions","responses":[106674]},{"keyword":"contributor","responses":[2470]},{"keyword":"control","responses":[23848,5763]},{"keyword":"convert image","responses":[264974]},{"keyword":"cookie","responses":[29023,18414,5763]},{"keyword":"cookie law","responses":[5763]},{"keyword":"cookies","responses":[29023,18414,5763]},{"keyword":"copy","responses":[82079,53378]},{"keyword":"copy post","responses":[53378]},{"keyword":"copy site","responses":[82079]},{"keyword":"cornerstone pages","responses":[315869]},{"keyword":"countdown","responses":[14900]},{"keyword":"countries","responses":[2470]},{"keyword":"counts","responses":[2470]},{"keyword":"create","responses":[2490]},{"keyword":"credentials","responses":[27861,27865]},{"keyword":"credit card","responses":[205586]},{"keyword":"critical css","responses":[297599]},{"keyword":"css","responses":[2451]},{"keyword":"custom","responses":[2451]},{"keyword":"custom button","responses":[2358]},{"keyword":"custom content types","responses":[4299]},{"keyword":"custom content width","responses":[2372]},{"keyword":"custom gallery","responses":[2449]},{"keyword":"custom message","responses":[2269]},{"keyword":"custom post type","responses":[4299]},{"keyword":"custom post types","responses":[4299]},{"keyword":"custom widget","responses":[170689]},{"keyword":"custom-excerpts","responses":[2269]},{"keyword":"customize","responses":[170689,25530,22270,10188,3270,2684,2451]},{"keyword":"customize comment form","responses":[2300]},{"keyword":"customize confirmation email","responses":[2385]},{"keyword":"customize publicize","responses":[2269]},{"keyword":"customize subscription email","responses":[2385]},{"keyword":"customizer","responses":[14425]},{"keyword":"daily","responses":[2470]},{"keyword":"dailymotion","responses":[2324]},{"keyword":"data","responses":[12842]},{"keyword":"data sync","responses":[12842]},{"keyword":"date","responses":[14425,2470]},{"keyword":"day","responses":[23668]},{"keyword":"deactivate","responses":[23848,5238]},{"keyword":"debug","responses":[3896]},{"keyword":"delete","responses":[5763,5238]},{"keyword":"description","responses":[14220,12762]},{"keyword":"design","responses":[22270]},{"keyword":"detail","responses":[2470]},{"keyword":"details","responses":[14425]},{"keyword":"developers","responses":[5135,2684]},{"keyword":"developing","responses":[2592]},{"keyword":"development","responses":[82079,2592]},{"keyword":"development mode","responses":[2592]},{"keyword":"different","responses":[2470]},{"keyword":"digg","responses":[2324]},{"keyword":"disable","responses":[5763]},{"keyword":"disable comment likes","responses":[20922]},{"keyword":"disable comments","responses":[2300]},{"keyword":"disable hovercard","responses":[2401]},{"keyword":"disable likes","responses":[20922,2290]},{"keyword":"disconnect","responses":[5238]},{"keyword":"discount","responses":[205586]},{"keyword":"display","responses":[14425,10188]},{"keyword":"distribution","responses":[2972]},{"keyword":"donations","responses":[106674,74068]},{"keyword":"down","responses":[2869]},{"keyword":"downgrade","responses":[205586]},{"keyword":"downtime","responses":[2869]},{"keyword":"duplicate","responses":[53378]},{"keyword":"dynamic urls","responses":[141278]},{"keyword":"ecommerce","responses":[34978]},{"keyword":"editorially","responses":[2541]},{"keyword":"elastic","responses":[23670]},{"keyword":"elasticsearch","responses":[25530,23670]},{"keyword":"email","responses":[59087,3541,2358,2332]},{"keyword":"email address","responses":[59087]},{"keyword":"emails","responses":[2332]},{"keyword":"embed","responses":[228038,149143]},{"keyword":"embeds","responses":[2324]},{"keyword":"enable comment likes","responses":[20922]},{"keyword":"enable comments","responses":[2300]},{"keyword":"enable hovercard","responses":[2401]},{"keyword":"enable likes","responses":[20922,2290]},{"keyword":"encode","responses":[16573]},{"keyword":"encoding","responses":[16573]},{"keyword":"enhanced","responses":[2972]},{"keyword":"episode","responses":[95361]},{"keyword":"eprivacy","responses":[5763]},{"keyword":"equations","responses":[2388]},{"keyword":"errors","responses":[223693,120460,16573,2591,2583,2341]},{"keyword":"eu cookie law","responses":[18414,5763]},{"keyword":"eu cookies","responses":[5763]},{"keyword":"event","responses":[88411,23668]},{"keyword":"event restore","responses":[23668,23429]},{"keyword":"eventbrite","responses":[88411]},{"keyword":"events","responses":[23429]},{"keyword":"excerpt","responses":[14425]},{"keyword":"exif","responses":[2449]},{"keyword":"extend","responses":[2684]},{"keyword":"extra","responses":[15501,2473]},{"keyword":"extra sidebar widgets","responses":[15501]},{"keyword":"facebook","responses":[304001,264974,106711,67479,3896,2324,2358,2300,2277,2269]},{"keyword":"facebook page","responses":[2277]},{"keyword":"facebook profile","responses":[2277]},{"keyword":"facebook share","responses":[304001,263631]},{"keyword":"fatal","responses":[223693]},{"keyword":"feature","responses":[118410]},{"keyword":"featured","responses":[14425]},{"keyword":"featured image","responses":[14425]},{"keyword":"features","responses":[12762]},{"keyword":"feedback","responses":[2490]},{"keyword":"feedbacks","responses":[2490]},{"keyword":"filter","responses":[26849,10188]},{"keyword":"filters","responses":[26849]},{"keyword":"firehose","responses":[2972]},{"keyword":"firewall","responses":[2591]},{"keyword":"flash","responses":[122418,2402]},{"keyword":"flickr","responses":[67479,40855,2324]},{"keyword":"follow","responses":[2385]},{"keyword":"followers","responses":[3541,2470,2385]},{"keyword":"font","responses":[2451]},{"keyword":"fonts","responses":[148713]},{"keyword":"food","responses":[4299]},{"keyword":"footer_widgets","responses":[2532]},{"keyword":"form","responses":[106321,2490,2300]},{"keyword":"formatting","responses":[2332]},{"keyword":"forms","responses":[2490]},{"keyword":"formula","responses":[2388]},{"keyword":"formulas","responses":[2388]},{"keyword":"ftp","responses":[27861,27865]},{"keyword":"full","responses":[14425,12762]},{"keyword":"full list","responses":[23848]},{"keyword":"functionality","responses":[26849]},{"keyword":"functions","responses":[26849]},{"keyword":"ga","responses":[15234]},{"keyword":"galleries","responses":[2449,2372]},{"keyword":"gallery","responses":[59120,2449,2372]},{"keyword":"gdpr","responses":[30883,29023,18414,12842]},{"keyword":"generate","responses":[14140]},{"keyword":"geotag","responses":[2332]},{"keyword":"geotagging","responses":[2332]},{"keyword":"geotags","responses":[2332]},{"keyword":"get started","responses":[2566]},{"keyword":"gif","responses":[54283]},{"keyword":"giphy","responses":[54283]},{"keyword":"github","responses":[67479]},{"keyword":"good news","responses":[2869]},{"keyword":"goodreads","responses":[12477]},{"keyword":"google","responses":[148713,2358]},{"keyword":"google analytics","responses":[15234,2470]},{"keyword":"google calendar","responses":[92497]},{"keyword":"google calendars","responses":[92497,2324]},{"keyword":"google docs","responses":[16573]},{"keyword":"google fonts","responses":[148713]},{"keyword":"google maps","responses":[2324]},{"keyword":"google news","responses":[8265]},{"keyword":"google plus","responses":[2358]},{"keyword":"google search","responses":[106711]},{"keyword":"google translate","responses":[14182]},{"keyword":"google+","responses":[15234,14182,8265,3613,2324,2358,2300]},{"keyword":"grammar","responses":[3635]},{"keyword":"graph","responses":[2277]},{"keyword":"gravatar","responses":[2952,2401]},{"keyword":"grid","responses":[10188]},{"keyword":"grunion","responses":[2490]},{"keyword":"gutenberg","responses":[95361,92497,88535,65764,46996]},{"keyword":"header","responses":[14406]},{"keyword":"headers already sent","responses":[13903]},{"keyword":"help","responses":[2566]},{"keyword":"heroku","responses":[2849]},{"keyword":"hide","responses":[14425,5238]},{"keyword":"hide button","responses":[2358]},{"keyword":"history","responses":[2451]},{"keyword":"hooks","responses":[26849]},{"keyword":"hosting","responses":[139807,3644]},{"keyword":"hosting requirements","responses":[139807]},{"keyword":"hovercard","responses":[2401]},{"keyword":"html5","responses":[122418,2402]},{"keyword":"https","responses":[107402]},{"keyword":"http_request_failed","responses":[2591]},{"keyword":"i18n-tier1","responses":[82575,65764,46996,29023,14220,14140,5763,2696,2566,2470,2532,2385,2269]},{"keyword":"i18n-tier2","responses":[104848,43708,34911,26837,21508,22270,18414,14182,10174,4500,2869,2490,2473,2332,2300,2277]},{"keyword":"i18n-tier3","responses":[122413,27865,67479,14155,10188,4500,3896,3270,3128,2886,2521,2451,2358,2372,2332,2341,2290]},{"keyword":"i18n-tier5","responses":[122426,122418,36183,35020,34978,31375,31264,30883,26849,26830,23433,23668,23429,25530,16573,23848,23670,20922,16803,15501,15234,14909,14425,14900,14896,14891,14406,14155,13903,12842,12825,12762,12733,12477,8265,8064,5207,5135,5238,4500,4299,3644,3635,3613,3541,3214,2987,2972,2952,2947,2939,2886,2849,2684,2591,2592,2583,2570,2541,2465,2324,2449,2358,2425,2402,2401,2372,2388,2295,2292]},{"keyword":"i18n-tier9","responses":[106321,101094,97314,92262,88411,83509,83546,74068,65764,59067,59087,59048,59120,54283,51572,46996,48571]},{"keyword":"ico","responses":[5763]},{"keyword":"icon","responses":[67479]},{"keyword":"icons","responses":[67479]},{"keyword":"identity crisis","responses":[141278,14155]},{"keyword":"idn","responses":[3896]},{"keyword":"image","responses":[122413,101094,83509,54283,26830,10188,3896,3128,2449]},{"keyword":"image analysis","responses":[218398]},{"keyword":"image cdn","responses":[218398]},{"keyword":"image compare","responses":[101094]},{"keyword":"image gallery","responses":[218398]},{"keyword":"image optimize","responses":[218398]},{"keyword":"images","responses":[119052,59120,43708,26830,2449]},{"keyword":"import","responses":[223665]},{"keyword":"improve","responses":[315869]},{"keyword":"improve speed","responses":[297599,263513,248350,218398]},{"keyword":"inactive","responses":[5238]},{"keyword":"increase speed","responses":[227251]},{"keyword":"index","responses":[3613]},{"keyword":"indexing","responses":[3613]},{"keyword":"infinite","responses":[2532]},{"keyword":"infinite scroll","responses":[2532]},{"keyword":"infinitewp","responses":[4500]},{"keyword":"instagram","responses":[304001,264974,217064,97314,67479]},{"keyword":"instagram block","responses":[97314]},{"keyword":"install","responses":[2566]},{"keyword":"intermittent","responses":[2869]},{"keyword":"internationalization","responses":[2570]},{"keyword":"ip","responses":[82575,14406]},{"keyword":"is back up","responses":[2869]},{"keyword":"is not loading","responses":[2869]},{"keyword":"is still offline","responses":[2869]},{"keyword":"issue","responses":[8064]},{"keyword":"issues","responses":[2591,2583]},{"keyword":"jetmon","responses":[2869]},{"keyword":"jetpack","responses":[232492,203414]},{"keyword":"jetpack backup","responses":[233836,119273,82079,27865,23433]},{"keyword":"jetpack backups","responses":[31161,27861,31375]},{"keyword":"jetpack boost","responses":[263513,248350,227251,201166,148988,120813]},{"keyword":"jetpack connection","responses":[204690,119273,107402]},{"keyword":"jetpack features","responses":[265485,118309,118410]},{"keyword":"jetpack free","responses":[118410]},{"keyword":"jetpack legacy plans","responses":[118410]},{"keyword":"jetpack monitor","responses":[2869]},{"keyword":"jetpack personal","responses":[118410]},{"keyword":"jetpack premium","responses":[118410]},{"keyword":"jetpack professional","responses":[118410]},{"keyword":"jetpack scan","responses":[31264]},{"keyword":"jetpack site uptime monitor by wordpress.com","responses":[2869]},{"keyword":"jetpack social","responses":[315231,304001,264974,247414,227920,217064,214398,206619]},{"keyword":"jetpack stats","responses":[300129,265573,265450,247444,223122,213397,3541,2470]},{"keyword":"jetpack video press","responses":[168474]},{"keyword":"jetpack_development_mode","responses":[2592]},{"keyword":"jetpack_dev_debug","responses":[2592]},{"keyword":"jetpack_staging_mode","responses":[10174]},{"keyword":"json","responses":[4500,2541]},{"keyword":"json api","responses":[4500,2541]},{"keyword":"klout","responses":[2541]},{"keyword":"language","responses":[3635,2570]},{"keyword":"latex","responses":[2696,2388]},{"keyword":"law","responses":[5763]},{"keyword":"lazy images","responses":[26830]},{"keyword":"legacy","responses":[118410]},{"keyword":"less","responses":[2451]},{"keyword":"license","responses":[232492]},{"keyword":"lighthouse","responses":[265350]},{"keyword":"like","responses":[20922,2290]},{"keyword":"likes","responses":[20922,2290]},{"keyword":"limits","responses":[304001]},{"keyword":"linkedin","responses":[67479,2358,2295,2269]},{"keyword":"list","responses":[23848,14891,12762,10188,2947]},{"keyword":"loading","responses":[26830]},{"keyword":"local","responses":[2592]},{"keyword":"localhost","responses":[2592]},{"keyword":"locally","responses":[2592]},{"keyword":"locations","responses":[10188,2470]},{"keyword":"log","responses":[23429]},{"keyword":"logic","responses":[2425]},{"keyword":"login","responses":[121408,3644,2886,2566]},{"keyword":"lost","responses":[2470]},{"keyword":"mailchimp","responses":[63692]},{"keyword":"mailchimp block","responses":[63692]},{"keyword":"malicious","responses":[14406]},{"keyword":"manage","responses":[4500]},{"keyword":"manage payment methods","responses":[205586]},{"keyword":"manage purchases","responses":[205586]},{"keyword":"management","responses":[4500]},{"keyword":"managewp","responses":[4500]},{"keyword":"manual","responses":[31375]},{"keyword":"manual share","responses":[247414]},{"keyword":"map","responses":[46996]},{"keyword":"markdown","responses":[122426,46996,3214]},{"keyword":"masonry","responses":[14425,2532]},{"keyword":"mastodon","responses":[214398]},{"keyword":"match","responses":[15234]},{"keyword":"math","responses":[2388]},{"keyword":"mathematical","responses":[2388]},{"keyword":"maximum","responses":[10188]},{"keyword":"media","responses":[223099,168474,122418,2402,2372]},{"keyword":"membership","responses":[74068]},{"keyword":"menu","responses":[4299]},{"keyword":"menus","responses":[4299]},{"keyword":"meta","responses":[14220]},{"keyword":"meta tag","responses":[3896,3613]},{"keyword":"metadata","responses":[2449]},{"keyword":"migrate","responses":[3541,2385]},{"keyword":"migration","responses":[3541]},{"keyword":"milestone","responses":[14900]},{"keyword":"missing","responses":[2591,2470]},{"keyword":"missing_secrets","responses":[2591]},{"keyword":"mixed","responses":[2591]},{"keyword":"mo","responses":[2570]},{"keyword":"mobile","responses":[2521,2451]},{"keyword":"mobile push","responses":[2521]},{"keyword":"mode","responses":[2592]},{"keyword":"monetize","responses":[247556,59048,14909]},{"keyword":"monetizing","responses":[59048,14909]},{"keyword":"monitor","responses":[2869]},{"keyword":"monitoring","responses":[2869]},{"keyword":"monthly","responses":[2470]},{"keyword":"more","responses":[14140]},{"keyword":"mosaic","responses":[2372]},{"keyword":"move","responses":[3541,2470,2385]},{"keyword":"move button","responses":[2358]},{"keyword":"moving","responses":[3541]},{"keyword":"multiple sites","responses":[4500]},{"keyword":"multisite","responses":[149322,14406]},{"keyword":"mystery charges","responses":[205586]},{"keyword":"new","responses":[3541,2470]},{"keyword":"new tumblr connection","responses":[2292]},{"keyword":"newsletter form","responses":[232362,223651,106321]},{"keyword":"nextdoor","responses":[227920,228038]},{"keyword":"ngo","responses":[12825]},{"keyword":"nonprofit discount","responses":[205586]},{"keyword":"notes","responses":[263631]},{"keyword":"notification","responses":[2521,2290]},{"keyword":"notifications","responses":[51572,2521]},{"keyword":"nova","responses":[4299]},{"keyword":"npo","responses":[205586]},{"keyword":"nrelate","responses":[122413,3270,3128]},{"keyword":"number","responses":[10188]},{"keyword":"oauth2","responses":[2541]},{"keyword":"offline","responses":[2592]},{"keyword":"offline mode","responses":[2592]},{"keyword":"offsite","responses":[2341]},{"keyword":"og","responses":[3896]},{"keyword":"og:image","responses":[2269]},{"keyword":"ogg","responses":[122418,2402]},{"keyword":"old","responses":[3541,2470]},{"keyword":"one-click","responses":[23433,23668]},{"keyword":"open","responses":[2277]},{"keyword":"open graph","responses":[3896,2269]},{"keyword":"opengraph","responses":[3896]},{"keyword":"opentable","responses":[88535]},{"keyword":"operation timed out","responses":[2591]},{"keyword":"optimization","responses":[26830]},{"keyword":"optimize","responses":[315869]},{"keyword":"ovh","responses":[14406]},{"keyword":"pages","responses":[2470]},{"keyword":"path","responses":[2269]},{"keyword":"payment gateway","responses":[74068]},{"keyword":"payment method","responses":[205586]},{"keyword":"payments","responses":[106674,104848,74068,46996]},{"keyword":"paypal","responses":[232362,205586,104848]},{"keyword":"pbe","responses":[2332]},{"keyword":"performance","responses":[263513,215333,215697,215345,215307,218261,218236,43708,26837,26830]},{"keyword":"performance history","responses":[227251]},{"keyword":"phone","responses":[59087]},{"keyword":"phone number","responses":[59087]},{"keyword":"photo","responses":[101094,2449]},{"keyword":"photon","responses":[43708]},{"keyword":"photos","responses":[119052,83509,59120,2449]},{"keyword":"picture","responses":[2401]},{"keyword":"pictures","responses":[2372]},{"keyword":"pinterest","responses":[83509,67479,3613,2324,2358]},{"keyword":"plan options","responses":[118410]},{"keyword":"playback","responses":[122418,2402]},{"keyword":"plugin","responses":[223693,4500]},{"keyword":"plugin updates","responses":[4500]},{"keyword":"plugins","responses":[218261,218236,26849,4500,2583]},{"keyword":"po","responses":[2570]},{"keyword":"pocket","responses":[2358]},{"keyword":"podcast","responses":[95361]},{"keyword":"point in time","responses":[23668]},{"keyword":"policy","responses":[30883,29023]},{"keyword":"polldaddy","responses":[2324]},{"keyword":"pop-up","responses":[2401]},{"keyword":"popular","responses":[10188,2470]},{"keyword":"portfolio","responses":[4299]},{"keyword":"portfolios","responses":[4299]},{"keyword":"post","responses":[14425,2332]},{"keyword":"post by email","responses":[2696,2332]},{"keyword":"posting","responses":[2332]},{"keyword":"posts","responses":[122413,3270,3128,2947,2470]},{"keyword":"pot","responses":[2570]},{"keyword":"premium","responses":[22270]},{"keyword":"premium themes","responses":[22270]},{"keyword":"preprocessor","responses":[2451]},{"keyword":"press","responses":[122418,2402]},{"keyword":"press this","responses":[2358]},{"keyword":"preview hovercard","responses":[2401]},{"keyword":"pricing","responses":[118410]},{"keyword":"print","responses":[2358]},{"keyword":"privacy","responses":[247444,30883,29023,12842,5763]},{"keyword":"privacy policy","responses":[30883]},{"keyword":"profile","responses":[2401]},{"keyword":"profit","responses":[12825]},{"keyword":"proofreading","responses":[3635]},{"keyword":"protect","responses":[82575,14406]},{"keyword":"proxy","responses":[2591]},{"keyword":"public profile","responses":[2277]},{"keyword":"publicize","responses":[315231,304001,300863,227920,214398,3896,2295,2292,2277,2269]},{"keyword":"publish","responses":[2269]},{"keyword":"rating","responses":[83546]},{"keyword":"ratings","responses":[83546]},{"keyword":"re-share","responses":[2269]},{"keyword":"reaction","responses":[20922]},{"keyword":"reactions","responses":[20922]},{"keyword":"reader","responses":[36183]},{"keyword":"reading","responses":[12477]},{"keyword":"recipe","responses":[2324]},{"keyword":"recipes","responses":[2324]},{"keyword":"reconnect","responses":[2277]},{"keyword":"recording","responses":[2470]},{"keyword":"recurring donations","responses":[74068]},{"keyword":"recurring payments","responses":[106674,74068]},{"keyword":"reddit","responses":[2358]},{"keyword":"redirect","responses":[2490]},{"keyword":"refund policy","responses":[205586]},{"keyword":"refunds","responses":[205586]},{"keyword":"relate","responses":[122413,3128]},{"keyword":"related","responses":[122413,3270,3128]},{"keyword":"related fees","responses":[74068]},{"keyword":"related posts","responses":[46996]},{"keyword":"remote","responses":[4500]},{"keyword":"remove","responses":[5238]},{"keyword":"repeat visitor","responses":[65764]},{"keyword":"report","responses":[218398]},{"keyword":"reporting","responses":[15234]},{"keyword":"reservation","responses":[88535]},{"keyword":"reset","responses":[2358]},{"keyword":"rest","responses":[4500,2541]},{"keyword":"rest api","responses":[4500,2541]},{"keyword":"restaurant","responses":[88535]},{"keyword":"restore","responses":[233836,82079,27865,31375,23433,23668,23429,2451]},{"keyword":"restore a site","responses":[27861,27865,31375,23668]},{"keyword":"restores","responses":[233836,27865,31375,23433,23429]},{"keyword":"restrict","responses":[5763]},{"keyword":"review","responses":[12477]},{"keyword":"revisions","responses":[2451]},{"keyword":"rewind","responses":[31161,23433,23668,23429]},{"keyword":"rewind to this point","responses":[23668]},{"keyword":"rss","responses":[2939]},{"keyword":"safe mode","responses":[14155]},{"keyword":"sass","responses":[2451]},{"keyword":"scan","responses":[31264]},{"keyword":"scanner","responses":[31264]},{"keyword":"schedule","responses":[2269]},{"keyword":"scribd","responses":[2324]},{"keyword":"scroll","responses":[2532]},{"keyword":"search","responses":[170689,95973,25530,23670,2470]},{"keyword":"secrets","responses":[2591]},{"keyword":"secure","responses":[2886]},{"keyword":"security","responses":[82575,14406,2886,2869]},{"keyword":"security scannig","responses":[31161]},{"keyword":"security scanning","responses":[31161,31264]},{"keyword":"selling online","responses":[104848]},{"keyword":"seo","responses":[14220,8265,3896]},{"keyword":"seo tools","responses":[14220]},{"keyword":"settings","responses":[23848]},{"keyword":"setup","responses":[2566]},{"keyword":"sftp","responses":[27861,27865]},{"keyword":"share","responses":[315231,300863,264974,263631,247414,227920,228038,217064,214398,2358,2269]},{"keyword":"share count","responses":[2358]},{"keyword":"share counts","responses":[2358]},{"keyword":"shareaholic","responses":[3896]},{"keyword":"shares","responses":[2470]},{"keyword":"sharing","responses":[304001,300863,156241,2358,2295,2292,2277]},{"keyword":"sharing buttons","responses":[2358]},{"keyword":"sharing count","responses":[2358]},{"keyword":"sharing counts","responses":[2358]},{"keyword":"sharing icons","responses":[2358]},{"keyword":"sharing images","responses":[264974]},{"keyword":"shortcode","responses":[12733,10188,2696,2324,2449,2385,2332]},{"keyword":"shortcodes","responses":[205396,12733,2696,2324,2332]},{"keyword":"shortener","responses":[2465]},{"keyword":"shortlink","responses":[2465]},{"keyword":"shortlinks","responses":[2465]},{"keyword":"show","responses":[14425]},{"keyword":"sidebar","responses":[15501,2473]},{"keyword":"sign","responses":[2886]},{"keyword":"sign-up form","responses":[106321]},{"keyword":"signup","responses":[2385]},{"keyword":"simple payment","responses":[104848]},{"keyword":"simple payments","responses":[104848,46996]},{"keyword":"single","responses":[2886]},{"keyword":"site","responses":[4500,3613]},{"keyword":"site accelerator","responses":[43708]},{"keyword":"site down","responses":[120460,2869]},{"keyword":"site loading","responses":[227251]},{"keyword":"site log","responses":[23429]},{"keyword":"site manage","responses":[4500]},{"keyword":"site management","responses":[4500]},{"keyword":"site performance","responses":[26830]},{"keyword":"site speed","responses":[265350,227251]},{"keyword":"siteground","responses":[14406]},{"keyword":"sitemap","responses":[8265]},{"keyword":"sitemaps","responses":[8265]},{"keyword":"size","responses":[67479,10188]},{"keyword":"skype","responses":[2358]},{"keyword":"slider","responses":[101094]},{"keyword":"slides","responses":[59120]},{"keyword":"slideshare","responses":[2324]},{"keyword":"slideshow","responses":[119052,59120,2324]},{"keyword":"slideshows","responses":[59120,2324]},{"keyword":"slow","responses":[2869]},{"keyword":"slow site","responses":[2869]},{"keyword":"snippets","responses":[26849]},{"keyword":"social","responses":[315231,300863,263631,260554,247414,227920,214398,156241,149143,106711,97314,67479,51572,40855,3896,2358,2300,2290,2295,2292,2277,2269]},{"keyword":"social icon","responses":[67479]},{"keyword":"social icons","responses":[67479]},{"keyword":"social media","responses":[106711,67479]},{"keyword":"social media icon","responses":[67479]},{"keyword":"social media icons","responses":[67479]},{"keyword":"social media widget","responses":[67479]},{"keyword":"social network","responses":[2269]},{"keyword":"social notes","responses":[263631]},{"keyword":"social previews","responses":[106711]},{"keyword":"soundcloud","responses":[2324]},{"keyword":"spam","responses":[20922,2341]},{"keyword":"spam comment likes","responses":[20922]},{"keyword":"speed","responses":[315869,297599,248350,43708]},{"keyword":"speed score","responses":[265350,248350,227251]},{"keyword":"spell","responses":[3635]},{"keyword":"spellchecker","responses":[3635]},{"keyword":"spelling","responses":[3635]},{"keyword":"square","responses":[2372]},{"keyword":"ssh","responses":[27861,27865]},{"keyword":"ssl","responses":[107402]},{"keyword":"ssl error","responses":[107402]},{"keyword":"sso","responses":[2886]},{"keyword":"stack overflow","responses":[67479]},{"keyword":"stackedit","responses":[2541]},{"keyword":"staging","responses":[82079,10174]},{"keyword":"star ratings","responses":[83546]},{"keyword":"statistics","responses":[95618,15234]},{"keyword":"stats","responses":[300129,247444,223122,95618,15234,14896,14140,10188,4500,3541,2591,2470]},{"keyword":"stop","responses":[5238]},{"keyword":"store","responses":[34978]},{"keyword":"stripe","responses":[232362,106674,74068]},{"keyword":"stripe payments","responses":[232362,106674]},{"keyword":"style","responses":[3635]},{"keyword":"stylesheet","responses":[2451]},{"keyword":"submission","responses":[2490]},{"keyword":"submissions","responses":[2490]},{"keyword":"subscribers","responses":[232362,223651,3541,2470,2385]},{"keyword":"subscription","responses":[223651,2324,2385]},{"keyword":"subscription migration","responses":[3541]},{"keyword":"subscriptions","responses":[51572,46996,3541,2385]},{"keyword":"support key","responses":[2341]},{"keyword":"sync","responses":[12842]},{"keyword":"tags","responses":[36183,14425]},{"keyword":"ted","responses":[2324]},{"keyword":"telegram","responses":[2358]},{"keyword":"terms","responses":[2470]},{"keyword":"test","responses":[2592]},{"keyword":"testimonial","responses":[4299]},{"keyword":"testimonials","responses":[4299]},{"keyword":"testing","responses":[2592]},{"keyword":"text","responses":[10188]},{"keyword":"theme","responses":[22270,14425,2451,2341]},{"keyword":"themes","responses":[22270,2532]},{"keyword":"theora","responses":[122418,2402]},{"keyword":"threads","responses":[300863]},{"keyword":"threat resolution","responses":[31264]},{"keyword":"thumbnail","responses":[10188]},{"keyword":"thumbnails","responses":[122413,3128]},{"keyword":"ticket","responses":[88411]},{"keyword":"tiled","responses":[2372]},{"keyword":"tiled galleries","responses":[46996,2372]},{"keyword":"tiled gallery","responses":[218398,2372]},{"keyword":"time","responses":[2470]},{"keyword":"tips","responses":[106674]},{"keyword":"toolbar","responses":[16803,2521]},{"keyword":"tools","responses":[14425]},{"keyword":"top","responses":[10188]},{"keyword":"top posts","responses":[265450,10188]},{"keyword":"totals","responses":[2470]},{"keyword":"track","responses":[95361,95618,15234,2470]},{"keyword":"traffic","responses":[14140]},{"keyword":"transaction id","responses":[205586]},{"keyword":"transfer","responses":[35020,3541,2470,2385]},{"keyword":"transfer followers","responses":[232362,3541,2385]},{"keyword":"transfer subscribers","responses":[232362,2385]},{"keyword":"transferring","responses":[3541]},{"keyword":"translate","responses":[14182,2570]},{"keyword":"translation","responses":[2570]},{"keyword":"transport","responses":[2591]},{"keyword":"troubleshoot","responses":[223693,3896,2591,2341,2277]},{"keyword":"troubleshoot boost","responses":[263513]},{"keyword":"troubleshooting","responses":[223693,119273,34911,21508,2591,2583]},{"keyword":"troubleshooting backup","responses":[119273]},{"keyword":"tumbler","responses":[2292]},{"keyword":"tumblr","responses":[2358,2292,2269]},{"keyword":"turning off hovercards","responses":[2401]},{"keyword":"tweet","responses":[2269]},{"keyword":"twitch.tv","responses":[2324]},{"keyword":"twitchtv","responses":[2324]},{"keyword":"twitter","responses":[149143,106711,67479,2324,2358,2300,2269]},{"keyword":"types","responses":[10188]},{"keyword":"unable to communicate","responses":[2591]},{"keyword":"unblock","responses":[82575,14406]},{"keyword":"undo","responses":[23429]},{"keyword":"untappd","responses":[12733]},{"keyword":"updating","responses":[15234,2470]},{"keyword":"upgrade","responses":[205586]},{"keyword":"uptime","responses":[2869]},{"keyword":"url","responses":[2465]},{"keyword":"user","responses":[2470]},{"keyword":"user names","responses":[3644]},{"keyword":"vat","responses":[205586]},{"keyword":"vat invoice","responses":[205586]},{"keyword":"vat receipt","responses":[205586]},{"keyword":"vaultpress","responses":[31161]},{"keyword":"vaultpress lite","responses":[118410]},{"keyword":"vaultpress premiun","responses":[118410]},{"keyword":"verification","responses":[3613]},{"keyword":"verify","responses":[3613]},{"keyword":"video","responses":[223122,223119,223099,122418,2402]},{"keyword":"video privacy","responses":[168474]},{"keyword":"videopress","responses":[223665,223122,223119,223099,205396,203414,168474,122418,2402]},{"keyword":"videos","responses":[223665,223122,223119,122418,119052,2402]},{"keyword":"video_flash_params","responses":[122418,2402]},{"keyword":"views","responses":[14140]},{"keyword":"vimeo","responses":[67479,2324]},{"keyword":"vine","responses":[2324]},{"keyword":"visibility","responses":[65764,2425]},{"keyword":"visit count","responses":[65764]},{"keyword":"visits","responses":[2470]},{"keyword":"vorbis","responses":[122418,2402]},{"keyword":"webcomic","responses":[4299]},{"keyword":"webmaster","responses":[3613]},{"keyword":"wedding","responses":[14900]},{"keyword":"weekly","responses":[2470]},{"keyword":"whatsapp","responses":[2358]},{"keyword":"whitelist","responses":[82575,2591]},{"keyword":"whitespace","responses":[13903]},{"keyword":"widget","responses":[40855,18414,14900,14896,14891,14182,12477,10188,2473,2425]},{"keyword":"widget control","responses":[2425]},{"keyword":"widgets","responses":[2473,2425]},{"keyword":"woo","responses":[34978]},{"keyword":"woocommerce","responses":[233836,204690,95618,34978]},{"keyword":"woocommerce services","responses":[34978]},{"keyword":"wordpress.com","responses":[121408,118309,3541,2470,2300]},{"keyword":"wordpress.com connection","responses":[118309]},{"keyword":"wordpress.org","responses":[121408,67479]},{"keyword":"wp engine","responses":[10174]},{"keyword":"wp super cache","responses":[215333,215697,215345,215307]},{"keyword":"wp-config","responses":[2592]},{"keyword":"wp-config.php","responses":[141278,10174]},{"keyword":"wp.me","responses":[2465]},{"keyword":"wpme","responses":[2465]},{"keyword":"wpremote","responses":[4500]},{"keyword":"wpvideo","responses":[122418,2402]},{"keyword":"writer","responses":[2470]},{"keyword":"writing","responses":[122426,3214,2696,2388]},{"keyword":"wrong","responses":[2470]},{"keyword":"xml","responses":[8265]},{"keyword":"xmlrpc","responses":[21508,13903]},{"keyword":"xmlrpc.php","responses":[21508]},{"keyword":"yarp","responses":[122413,3270,3128]},{"keyword":"yarpp","responses":[122413,3270,3128]},{"keyword":"yoast","responses":[14220,8265,3896]},{"keyword":"yourls","responses":[2465]},{"keyword":"youtube","responses":[223665,67479,2324]},{"keyword":"zero","responses":[2470,2358]}], "responses": {"315869":{"title":"Jetpack Boost Cornerstone&nbsp;Pages","excerpt":"Improve your site\u2019s speed by optimizing its most important pages with the Cornerstone Pages setting. Cornerstone pages are specific pages [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/cornerstone-pages\/"},"315231":{"title":"Post to Bluesky with Jetpack&nbsp;Social","excerpt":"Automatically publish your blog posts on your Bluesky profile. Connect Bluesky To connect your Bluesky social media profile to your [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/bluesky\/"},"311812":{"title":"Re-sharing previously published posts with Jetpack&nbsp;Social","excerpt":"Revive the posts that resonated the most with your audience by re-sharing them with your audience on your selected social [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/re-sharing-previously-published-posts-with-jetpack-social\/"},"311600":{"title":"Export a site to&nbsp;WordPress.org","excerpt":"Moving your website from&nbsp;WordPress.com&nbsp;to&nbsp;WordPress.org&nbsp;may seem intimidating, but it&#8217;s a manageable process. You can continue enjoying the benefits of Jetpack on [&hellip;]","url":"https:\/\/jetpack.com\/support\/export-a-site-to-wordpress-org\/"},"305097":{"title":"Export Subscribers","excerpt":"You can export your subscribers list by downloading the email addresses as a CSV file. ","url":"https:\/\/jetpack.com\/support\/newsletter\/export-subscribers\/"},"304001":{"title":"Social Media Posting Limits for Jetpack&nbsp;Social","excerpt":"Learn about the posting limits on various social media platforms, along with our recommended posting frequencies to help you maintain [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/social-media-posting-limits\/"},"303158":{"title":"Create Your Site&#8217;s Logo with&nbsp;AI","excerpt":"Jetpack AI Assistant brings logo generation into your editor. Requirements AI Logo Generator requires a subscription to the paid Jetpack [&hellip;]","url":"https:\/\/jetpack.com\/support\/create-your-sites-logo-with-ai\/"},"303129":{"title":"Generate Images with AI Directly in the&nbsp;Editor","excerpt":"Jetpack AI Assistant brings AI-powered image generation right into your editor. Requirements AI-powered image generation requires a website connected to [&hellip;]","url":"https:\/\/jetpack.com\/support\/generate-images-with-ai-directly-in-the-editor\/"},"302955":{"title":"Publish Better Content with Write Brief with&nbsp;AI","excerpt":"Jetpack AI Assistant ships a handy Write Brief with AI tool directly in your editor to estimate the readability of [&hellip;]","url":"https:\/\/jetpack.com\/support\/publish-better-content-with-write-brief-with-ai\/"},"300863":{"title":"Post to Threads with Jetpack&nbsp;Social","excerpt":"Automatically publish your blog posts on your Threads profile. Connect Threads Connect your site to your Threads profile by following [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/post-to-threads\/"},"300303":{"title":"Protect","excerpt":"Keep your site&#8217;s content safe and sound, while warding off hackers and spammers. Jetpack Backups You can backup your website [&hellip;]","url":"https:\/\/jetpack.com\/support\/features-protect\/"},"300300":{"title":"Create","excerpt":"Create beautiful and engaging content the WordPress way. Jetpack Blocks Jetpack comes with over 40 Gutenberg blocks to help you [&hellip;]","url":"https:\/\/jetpack.com\/support\/features-create\/"},"300283":{"title":"Grow","excerpt":"Get more eyes on your content, and make sure your site&#8217;s performance is lightning fast! Grow your audience As you [&hellip;]","url":"https:\/\/jetpack.com\/support\/features-grow\/"},"300129":{"title":"UTM URL Builder","excerpt":"The UTM URL Builder simplifies tracking website traffic and analyzing campaigns. Available with a commercial Jetpack Stats plan or Jetpack Complete bundle, it generates URLs with UTM parameters, enabling users to track traffic source, medium, and campaign name. Users can then review and analyze traffic data in the Jetpack Stats dashboard to improve content strategies.","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/traffic-dashboard\/utm-url-builder\/"},"298943":{"title":"Cookie Consent Block","excerpt":"The Cookie Consent block displays a cookie consent banner on your website, letting visitors know the site uses cookies. Theme [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/cookie-consent-block\/"},"295143":{"title":"Improve your Post Titles with AI&nbsp;Assistant","excerpt":"Jetpack AI provides AI-powered suggestions to refine your post titles, helping you to craft more captivating content and improving your [&hellip;]","url":"https:\/\/jetpack.com\/support\/improve-your-post-titles-with-ai-assistant\/"},"297599":{"title":"Troubleshooting Critical CSS in Jetpack&nbsp;Boost","excerpt":"If you encounter an error indicating that Critical CSS isn\u2019t generating as expected, it\u2019s crucial to identify the specific problem [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/troubleshooting-critical-css-issues\/"},"292684":{"title":"Enhance Your Posts with AI-Generated Featured&nbsp;Images","excerpt":"Jetpack AI adds AI-powered featured image generation to your block editor.&nbsp;It will base the output on your post content and [&hellip;]","url":"https:\/\/jetpack.com\/support\/enhance-your-posts-with-ai-generated-featured-images\/"},"294288":{"title":"Customize the Newsletter&nbsp;experience","excerpt":"Enhance the Jetpack Newsletter experience by using the following customization options. Newsletter customization options can be found at Jetpack \u2192 [&hellip;]","url":"https:\/\/jetpack.com\/support\/newsletter\/customize-the-newsletter-experience\/"},"274824":{"title":"US Privacy Laws and Your Jetpack&nbsp;Site","excerpt":"We care about your privacy and the privacy of your site visitors. Some US states have laws that give consumers [&hellip;]","url":"https:\/\/jetpack.com\/support\/us-privacy-laws-and-your-jetpack-site\/"},"265573":{"title":"Blog Stats Block","excerpt":"The Blog Stats Block allows you to showcase site statistics on your website. You can display views and visitor statistics for individual posts and\/or the whole website.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/blog-stats-block\/"},"265085":{"title":"Jetpack VideoPress: Embed your&nbsp;videos","excerpt":"You can embed a Jetpack VideoPress video on websites outside your own by using an embed code. You can even [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/jetpack-videopress-embed-your-videos\/"},"265485":{"title":"Goodreads Block","excerpt":"Integrate your Goodreads profile, showcasing your bookshelf, onto your site with The Goodreads Block. Usage To add the block to [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/goodreads-block\/"},"265450":{"title":"Top Posts &amp; Pages&nbsp;Block","excerpt":"Display your most popular posts and pages on your site with the Top Posts &amp; Pages Block. Usage To add [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/top-posts-pages-block\/"},"265358":{"title":"Subscriber Login Block","excerpt":"The Subscriber Login block allows site members and subscribers to log in and access their account and\/or subscription details. This [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/subscriber-login-block\/"},"265350":{"title":"How the speed score is measured with Jetpack&nbsp;Boost?","excerpt":"Jetpack Boost optimizes your website&#8217;s performance, using Lighthouse to deliver accurate speed scores and enhance user experience. How my page [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/how-speed-is-measured\/"},"264974":{"title":"Understanding platform-specific media&nbsp;requirements","excerpt":"Not all social platforms support all media types. This guide provides details about the specific image and video requirements of [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/convert-images-for-sharing\/"},"263513":{"title":"Troubleshooting Jetpack Boost caching&nbsp;issues","excerpt":"If you receive an error indicating that the cache isn&#8217;t working as expected, it&#8217;s essential to identify the specific problem [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/troubleshooting-caching-issues\/"},"261483":{"title":"Caching site content with Jetpack&nbsp;Boost","excerpt":"Speed up website performance by storing frequently accessed content locally, reducing load times for visitors.&nbsp; To access the caching feature, [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/caching-site-content\/"},"263631":{"title":"Sharing Social Notes with Jetpack&nbsp;Social","excerpt":"Quickly express your thoughts and share them across your social networks without the hassle of formatting or titles\u2014perfect for spontaneous [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/sharing-social-notes\/"},"233836":{"title":"Jetpack Backups and WooCommerce&nbsp;Sites","excerpt":"Jetpack offers a specialized backup and restore service called the Immutable Real-Time Objects feature for WooCommerce sites that are on [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/backups-via-the-jetpack-plugin\/jetpack-backup-immutable-real-time-objects-for-woocommerce-sites\/"},"260868":{"title":"Update Jetpack and other&nbsp;plugins","excerpt":"Keep your site running quickly and safely by ensuring that plugins are up-to-date.&nbsp; Well-maintained WordPress plugins are always being improved [&hellip;]","url":"https:\/\/jetpack.com\/support\/update-jetpack-and-other-plugins\/"},"260846":{"title":"Licensing in Jetpack&nbsp;Manage","excerpt":"Learn more about the differences between licenses issued via Jetpack Manage and the standard licenses issued via Jetpack.com and WordPress.com. [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/licensing-in-jetpack-manage\/"},"260844":{"title":"Revoke licenses in Jetpack&nbsp;Manage","excerpt":"Through Jetpack Manage, you can easily revoke a site license when you no longer need it.&nbsp; Revoking single licenses vs. [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/licensing-in-jetpack-manage\/revoke-licenses-in-jetpack-manage\/"},"260841":{"title":"Issue licenses in Jetpack&nbsp;Manage","excerpt":"Learn how to issue single licenses and license bundles via Jetpack Manage.","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/licensing-in-jetpack-manage\/issue-licenses-in-jetpack-manage\/"},"260643":{"title":"Getting started","excerpt":"Welcome to our Getting Started with Jetpack Guide. Here, you can find out how to get started with Jetpack. You [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started\/"},"260554":{"title":"Blogroll Block","excerpt":"Use the Blogroll block to share a list of blogs you follow with your website visitors. Edit the Blogroll Item [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/blogroll-block\/"},"248350":{"title":"Exclude JavaScript files from Jetpack Boost&nbsp;deferral","excerpt":"If you experience unwanted website behavior when you defer JS with Jetpack Boost, the affected functionality could rely on the [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/exclude-javascript-files-from-jetpack-boost-deferral\/"},"246776":{"title":"Create Better Content with Jetpack&nbsp;AI","excerpt":"Jetpack AI adds AI-powered tools to your block editor. It helps you create better content by accelerating your workflow and [&hellip;]","url":"https:\/\/jetpack.com\/support\/create-better-content-with-jetpack-ai\/"},"248261":{"title":"Add a Like Button to Your&nbsp;Page","excerpt":"Insert the Like Block in any of your page templates so your readers can show their appreciation for your posts and pages.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/like-block\/"},"247556":{"title":"Advanced placement of&nbsp;WordAds","excerpt":"Customize exactly where ads do or don&#8217;t show on your website. If you&#8217;re comfortable, you can take the following steps [&hellip;]","url":"https:\/\/jetpack.com\/support\/ads\/advanced-placement-of-wordads\/"},"247444":{"title":"Jetpack Stats: Honor Do Not Track&nbsp;(DNT)","excerpt":"Respect your visitors&#8217; privacy by complying with their requests not to be tracked. Do Not Track (DNT) is a feature [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/jetpack-stats-honor-do-not-track-dnt\/"},"247414":{"title":"Sharing posts manually with Jetpack&nbsp;Social","excerpt":"Enhance your social media strategy and complement our auto-sharing feature with Manual sharing. Connect with your audience on platforms not [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/jetpack-social-manual-sharing-posts\/"},"242313":{"title":"Tiered Billing in Paid&nbsp;Stats","excerpt":"Our flexible pricing model bills you according to the volume of traffic your site receives, ensuring you only pay for [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/free-or-paid\/paid-stats-tier-billing\/"},"232362":{"title":"Paid Plan: Jetpack&nbsp;Creator","excerpt":"Grow, manage, and monetize your online presence with an enhanced set of tools all under one umbrella: Jetpack Creator. Import [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-creator\/"},"232492":{"title":"Activate a Jetpack Product via License&nbsp;Key","excerpt":"During the purchase process, you will be asked what site you want to assign a license to. You can skip [&hellip;]","url":"https:\/\/jetpack.com\/support\/activate-a-jetpack-product-via-license-key\/"},"227920":{"title":"Post to Nextdoor with Jetpack&nbsp;Social","excerpt":"Thanks to Jetpack Social\u2018s auto-sharing feature, you can automatically publish each one of your blog posts on your Nextdoor profile. [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/jetpack-social-nextdoor\/"},"228038":{"title":"Nextdoor Block","excerpt":"The Nextdoor Block allows you to embed posts from the Nextdoor social platform to your website. Requirements Nextdoor post embedding [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/nextdoor-block\/"},"227251":{"title":"Using Performance History in Jetpack&nbsp;Boost","excerpt":"The Performance History feature offers a robust way to track your website\u2019s speed score trends over time to better understand [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/using-performance-history-in-jetpack-boost\/"},"227222":{"title":"Interact with Your Content with Jetpack AI&nbsp;Search","excerpt":"Give your visitors a way to learn about and interact with your site in a natural and intuitive way. Through [&hellip;]","url":"https:\/\/jetpack.com\/support\/search\/jetpack-ai-search\/"},"222460":{"title":"Create Better Post Excerpts with&nbsp;AI","excerpt":"With Jetpack, you now have the power of AI at your fingertips, making it effortless to craft engaging post excerpts. [&hellip;]","url":"https:\/\/jetpack.com\/support\/create-better-post-excerpts-with-ai\/"},"224095":{"title":"Benefit From AI-Powered Feedback for Your&nbsp;Content","excerpt":"You can optimize your content\u2019s clarity and impact before publishing thanks to feedback from the AI Assistant. This feature is [&hellip;]","url":"https:\/\/jetpack.com\/support\/benefit-from-ai-powered-feedback-for-your-content\/"},"223904":{"title":"Earn","excerpt":"Make money by monetizing your site Through Jetpack you can earn from your website. You can do this in different [&hellip;]","url":"https:\/\/jetpack.com\/support\/features-earn\/"},"223693":{"title":"Deactivate a plugin or theme without access to WP&nbsp;Admin","excerpt":"If a plugin or theme causes a fatal or critical error in WordPress that results in loss of access to [&hellip;]","url":"https:\/\/jetpack.com\/support\/deactivate-a-plugin-or-theme-without-wp-admin-access\/"},"223665":{"title":"Import from YouTube to&nbsp;VideoPress","excerpt":"Import your YouTube videos to VideoPress, and say goodbye to third-party branding on your website. Getting started To switch over [&hellip;]","url":"https:\/\/jetpack.com\/support\/photos-and-videos\/import-from-youtube-to-videopress\/"},"223651":{"title":"Subscribe to a&nbsp;site","excerpt":"Never miss a post from the authors you love. Subscribe to be notified anytime a new post or comment is [&hellip;]","url":"https:\/\/jetpack.com\/support\/subscribe-to-a-site\/"},"223122":{"title":"Jetpack VideoPress video&nbsp;stats","excerpt":"Check how popular your Jetpack VideoPress videos are, with Jetpack Stats. Jetpack Stats, including video stats, are only available in [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/add-video-block-editor\/video-stats\/"},"223119":{"title":"Add chapters to your Jetpack VideoPress&nbsp;videos","excerpt":"Chapters are a great way to split up longer videos and organize them into different sections. Your visitors can see [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/add-video-block-editor\/add-chapters-to-your-videopress-videos\/"},"223099":{"title":"Add subtitles to your Jetpack VideoPress&nbsp;videos","excerpt":"Ensure your videos are as accessible as possible by adding subtitles or captions. You can add subtitles or captions to [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/add-subtitles-to-your-videopress-videos\/"},"218932":{"title":"Jetpack Monetize transaction&nbsp;fees","excerpt":"Start monetizing your site today. Earn money in a way that works for you and your readers. Get started offering [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-earn-transaction-fees\/"},"218493":{"title":"Jetpack Stats Plan: Free or&nbsp;Paid","excerpt":"Depending on your site&#8217;s nature and business activities, you may qualify for a free Jetpack Stats plan, or you might [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/free-or-paid\/"},"218398":{"title":"Analyze and Optimize Images with Jetpack&nbsp;Boost","excerpt":"Optimize image sizes, improve load speeds, and boost user satisfaction and search rankings with the Jetpack Boost Image Size Analyzer. [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/analyze-and-optimize-images-with-jetpack-boost\/"},"218145":{"title":"Subscribers Stats","excerpt":"The Jetpack Stats Subscribers view provides insights and data related to your subscribers. ","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/subscribers-stats\/"},"215333":{"title":"How to Test WP Super&nbsp;Cache","excerpt":"Test within WP Super Cache This plugin has a cache tester built into the settings page. Follow these steps to [&hellip;]","url":"https:\/\/jetpack.com\/support\/wp-super-cache\/how-to-test-wp-super-cache-manually\/"},"215697":{"title":"WP Super Cache Advanced Troubleshooting&nbsp;Checklist","excerpt":"Having trouble after activating WP Super Cache? Working your way through this checklist should help you find the issue. General [&hellip;]","url":"https:\/\/jetpack.com\/support\/wp-super-cache\/advanced-troubleshooting-checklist\/"},"215345":{"title":"Uninstall WP Cache manually, in an&nbsp;emergency","excerpt":"WP Super Cache has to modify configuration files that WordPress uses. On rare occasions, the modifications fail, which will cause [&hellip;]","url":"https:\/\/jetpack.com\/support\/wp-super-cache\/in-an-emergency-uninstalling-manually\/"},"215307":{"title":"Enable WP Cache&nbsp;debugging","excerpt":"Troubleshoot caching issues effectively by following this step-by-step guide to use the debug mode in WP Super Cache. You can [&hellip;]","url":"https:\/\/jetpack.com\/support\/wp-super-cache\/enabling-the-debug-mode\/"},"218261":{"title":"Initial WP Super Cache Setup and&nbsp;Configuration","excerpt":"WP Super Cache generates static HTML files from your dynamic WordPress blog. After an HTML file is generated, your webserver [&hellip;]","url":"https:\/\/jetpack.com\/support\/wp-super-cache\/initial-wp-super-cache-setup-and-configuration\/"},"218236":{"title":"WP Super Cache","excerpt":"With WP Super Cache, you can speed up your WordPress site by serving static HTML files instead of processing the [&hellip;]","url":"https:\/\/jetpack.com\/support\/wp-super-cache\/"},"217984":{"title":"Share to Instagram with Jetpack Social\u00a0","excerpt":"In addition to Facebook, LinkedIn, Tumblr and Mastodon, Jetpack Social allows you to connect and share posts to your Instagram Business account. ","url":"https:\/\/jetpack.com\/support\/jetpack-social\/sharing-to-instagram-with-jetpack-social\/"},"216092":{"title":"Tock Block","excerpt":"The Tock Block allows you to embed a button on your website for restaurant bookings via Tock, providing a convenient [&hellip;]","url":"https:\/\/jetpack.com\/support\/tock-block-2\/"},"217741":{"title":"Create a Paid&nbsp;Newsletter","excerpt":"Paid Newsletters let you earn income by creating engaging content and encouraging your readers to subscribe to your site. ","url":"https:\/\/jetpack.com\/support\/newsletter\/paid-newsletters\/"},"217064":{"title":"Post to your Instagram business account with Jetpack&nbsp;Social","excerpt":"Thanks to Jetpack Social\u2018s auto-sharing feature, you can automatically publish each one of your blog posts on your Instagram Business account.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/instagram\/"},"216001":{"title":"Paid Content Block","excerpt":"Monetize your site with the Paid Content Block. Create exclusive access to content you create, visible only to paying subscribers. [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/paid-content-block\/"},"216293":{"title":"Clone your live site to staging with Jetpack VaultPress&nbsp;Backup","excerpt":"Test changes and debug issues without risks to your self-hosted production site, by cloning to an existing staging site in [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/cloning-to-staging\/"},"216251":{"title":"Payments Buttons Block","excerpt":"Collect one-time or recurring payments with the easy of a button. Use Payments Buttons to sell physical and digital products [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/payments-buttons-block\/"},"214398":{"title":"Post to Mastodon with Jetpack&nbsp;Social","excerpt":"Thanks to Jetpack Social\u2018s auto-sharing feature, you can automatically publish each one of your blog posts on your Mastodon profile.\u00a0","url":"https:\/\/jetpack.com\/support\/jetpack-social\/mastodon\/"},"214303":{"title":"Jetpack AI Assistant&nbsp;Block","excerpt":"Unlock AI for help to draft, transform, translate, and improve content, with a powerful assistant at your side. Activate the [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/jetpack-ai-assistant-block\/"},"213397":{"title":"Jetpack Stats Dashboard&nbsp;Widget","excerpt":"The Jetpack Stats Dashboard Widget provides a compact overview of your site's statistics. ","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/dashboard-widget\/"},"206619":{"title":"Using the Social Image&nbsp;Generator","excerpt":"The Social Image Generator feature automatically generates an image for posts shared on your connected social accounts, saving you time and making posts more visually appealing.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/jetpack-social-image-generator\/"},"210862":{"title":"Writing Prompt Block","excerpt":"The Writing Prompt block provides a prompt to start your writing. It also allows you to include a link to other people's writing on the same topic in the WordPress.com Reader.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/writing-prompt-block\/"},"210802":{"title":"Speed up CSS Loading with Jetpack&nbsp;Boost","excerpt":"Help your pages load faster with Jetpack Boost&#8217;s Optimize Critical CSS feature. Jetpack Boost works to increase your website&#8217;s speed. [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/using-the-optimize-css-loading-feature-in-jetpack-boost\/"},"205909":{"title":"Jetpack Stats Insights&nbsp;Dashboard","excerpt":"Identify patterns and and understand trends in your data, with The Jetpack Stats Insights view. On the Insights view, you [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/insights-dashboard\/"},"205586":{"title":"Manage your Jetpack billing and&nbsp;payments","excerpt":"You can manage your Jetpack purchases, payment methods, and billing from your WordPress.com account. If you experience problems with any [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-billing-payments\/"},"205396":{"title":"Jetpack VideoPress Shortcodes","excerpt":"VideoPress Shortcodes allow you to embed your videos exactly where you want them giving you control over your media and content. ","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/jetpack-videopress-shortcodes\/"},"205703":{"title":"Configure Jetpack Stats for Your&nbsp;Website","excerpt":"Get valuable insight into how visitors engage with your website. Adjust which page views are counted and who has access [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/configure-jetpack-stats\/"},"205718":{"title":"Jetpack Stats: Ads&nbsp;Dashboard","excerpt":"The Jetpack Ads Traffic view provides statistics about ads served on your site and your earnings history.&nbsp; To see this [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/ads-dashboard\/"},"205353":{"title":"Troubleshoot Jetpack Stats and&nbsp;FAQs","excerpt":"Jetpack Stats provides clear and concise statistics about a website\u2019s visits and traffic. To learn more about how to use [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/troubleshooting-and-faqs\/"},"205271":{"title":"Navigating the Traffic Dashboard in Jetpack&nbsp;Stats","excerpt":"Jetpack Stats Traffic dashboard empowers you with actionable insights to understand and optimize your website&#8217;s performance. Some features in this [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/traffic-dashboard\/"},"204879":{"title":"Troubleshoot Plugin and Theme&nbsp;Conflicts","excerpt":"Some problems on your site can be caused by a conflict between Jetpack and other plugins or a theme. Get [&hellip;]","url":"https:\/\/jetpack.com\/support\/troubleshooting-plugin-and-theme-conflicts\/"},"204904":{"title":"Use MainWP Extensions for Jetpack Protect and&nbsp;Scan","excerpt":"Scan and fix multiple WordPress websites from a centralized dashboard, combining the power of Jetpack and MainWP. This article is [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-protect\/using-mainwp-extensions-for-jetpack-protect-and-scan\/"},"204690":{"title":"Woo Products that Require a Jetpack&nbsp;Connection","excerpt":"WooCommerce is a powerful e-commerce plugin built for WordPress. Some WooCommerce extensions require a Jetpack connection in order to connect [&hellip;]","url":"https:\/\/jetpack.com\/support\/woocommerce-products-that-require-a-jetpack-connection\/"},"203825":{"title":"Troubleshoot Jetpack Scan","excerpt":"Did Jetpack Scan stop working? Did you get an email that said Jetpack is having trouble scanning your site? Follow [&hellip;]","url":"https:\/\/jetpack.com\/support\/troubleshooting-jetpack-scan\/"},"203883":{"title":"Jetpack VaultPress Backup: Storage and&nbsp;Retention","excerpt":"How long do you keep my backups? Our different backup plans have different retention timeframes: How is storage usage calculated? [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/jetpack-vaultpress-backup-storage-and-retention\/"},"203739":{"title":"Jetpack and XML-RPC","excerpt":"XML-RPC is a communication protocol that Jetpack uses to connect your site to WordPress.com. Learn more about XML-RPC and how [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-and-xml-rpc\/"},"203414":{"title":"Getting Started with Jetpack&nbsp;VideoPress","excerpt":"Host your videos on WordPress.com rather than your host\u2019s servers. Your videos will load more quickly on your website, and [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/getting-started-with-jetpack-videopress\/"},"199871":{"title":"Add custom images and videos to your social posts with Jetpack&nbsp;Social","excerpt":"Enhance your social media engagement by creating eye-catching social media posts using custom images and videos. These features are available [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social-organic-content-sharing\/"},"202482":{"title":"Switch to the Jetpack&nbsp;app","excerpt":"Start using the Jetpack app to continue using your favorite Jetpack features, including Stats, Notifications, Reader, and more. In March [&hellip;]","url":"https:\/\/jetpack.com\/support\/switch-to-the-jetpack-app\/"},"203262":{"title":"Get help with the Jetpack iOS or Android&nbsp;app","excerpt":"Is something not working with the Jetpack app? Follow this guide to get help and how to contact our Jetpack [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/how-to-get-help-with-the-jetpack-mobile-app\/"},"202294":{"title":"Jetpack Manage: Managing&nbsp;Plugins","excerpt":"Install, update, or remove plugins installed on all of your sites connected to Jetpack Manage.\u00a0 Note:\u00a0This documentation is for sites [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/jetpack-manage-managing-plugins\/"},"202362":{"title":"Jetpack Manage Billing and&nbsp;Payments","excerpt":"In Jetpack Manage, you can manage all your billing related settings from one place. Note: This billing documentation is for [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/jetpack-manage-billing-payment-faqs\/"},"202131":{"title":"The Jetpack Manage&nbsp;Dashboard","excerpt":"Via Jetpack Manage&#8217;s dashboard, you can see at-a-glance the status of all of your Jetpack-connected sites. From site stats to [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/jetpack-manage-dashboard\/"},"201791":{"title":"Jetpack Firewall in the Jetpack Protect&nbsp;Plugin","excerpt":"Jetpack Firewall is a web application firewall (WAF) that examines incoming traffic to your site and decides to allow or [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-firewall-in-jetpack-protect-plugin\/"},"201166":{"title":"Improve your Site Speed&nbsp;Score","excerpt":"Give your visitors the best experience possible by ensuring that your site loads quickly and reliably. Jetpack tools such as [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/improving-your-site-speed-score\/"},"198947":{"title":"Jetpack Boost: Image Performance&nbsp;Guide","excerpt":"The image performance guide is a tool that can help you ensure that the images used on your site&#8217;s pages [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/image-performance-guide\/"},"199576":{"title":"Configure your videos via the Jetpack VideoPress&nbsp;Plugin","excerpt":"You control video settings and details with Jetpack VideoPress. From your WP Admin, go to Jetpack \u2192 VideoPress to access [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/customizing-your-jetpack-videopress-videos-via-the-jetpack-videopress-plugin\/"},"199323":{"title":"The Jetpack VideoPress&nbsp;Dashboard","excerpt":"The Jetpack VideoPress dashboard is a new page that allows you to upload and manage your videos in one place.","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/the-jetpack-videopress-dashboard\/"},"199049":{"title":"Promote Your Content with&nbsp;Blaze","excerpt":"Attract high-quality&nbsp;traffic&nbsp;to your site using Blaze. Using this service, you can advertise a post or page on some of the [&hellip;]","url":"https:\/\/jetpack.com\/support\/blaze\/"},"198813":{"title":"Import Subscribers","excerpt":"You can import subscribers' email addresses to your current Jetpack subscribers list. This page explains how to do it. ","url":"https:\/\/jetpack.com\/support\/newsletter\/import-subscribers\/"},"197758":{"title":"Install Jetpack Plugins","excerpt":"Blast off with Jetpack by installing our full plugin or just the individual plugins with the features you want. Choose [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/installing-jetpack-plugins\/"},"197688":{"title":"Troubleshoot Jetpack Restores","excerpt":"Fix common problems when restoring your website with Jetpack VaultPress Backup. Find missing content after a restore If you have [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/troubleshooting-jetpack-restores\/"},"193110":{"title":"Add Sites to Jetpack&nbsp;Manage","excerpt":"Now that you&#8217;ve signed up for Jetpack Manage, you can start adding your clients&#8217; sites to your dashboard so that [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/add-sites-agency-portal-dashboard\/"},"192667":{"title":"Displaying Featured Images in WP Admin Post&nbsp;List","excerpt":"Jetpack\u2019s Post List feature allows you to easily view the featured images from your posts and pages right in the [&hellip;]","url":"https:\/\/jetpack.com\/support\/display-featured-images-in-wp-admin-post-list\/"},"182522":{"title":"Getting started with Jetpack Social in the Jetpack&nbsp;plugin","excerpt":"If you already have the Jetpack plugin installed and connected, you can follow this guide to enable Jetpack Social. How [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/getting-started-with-the-jetpack-plugin\/"},"176162":{"title":"Jetpack Manage","excerpt":"If you manage multiple sites, Jetpack Manage lets you keep an eye on all your WordPress sites from one convenient [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-manage-instructions\/"},"171873":{"title":"Connecting additional users to&nbsp;Jetpack","excerpt":"The initial account, or user, connected to Jetpack is considered the site&#8217;s primary user. Additional users can also be added [&hellip;]","url":"https:\/\/jetpack.com\/support\/transfer-your-jetpack-connection-or-plan-to-another-user\/additional-users\/"},"170798":{"title":"Getting started with the Jetpack Social&nbsp;plugin","excerpt":"Use the standalone Jetpack Social plugin to share your WordPress posts with your social networks. Use all the features of [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/jetpack-social-plugin\/"},"170863":{"title":"Auto-sharing posts with Jetpack&nbsp;Social","excerpt":"Update May 18, 2023:&nbsp;Twitter is no longer supported.&nbsp;Learn more about this. With Jetpack Social&#8217;s automatic sharing feature (formerly known as [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/social-sharing-new-posts\/"},"170852":{"title":"Connect social networks with Jetpack&nbsp;Social","excerpt":"Automatically share your blog posts to Facebook, LinkedIn, Tumblr, Mastodon, Nextdoor, Instagram Business, Threads and Bluesky accounts by connecting them [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/connecting-to-social-networks\/"},"169523":{"title":"Jetpack Protect","excerpt":"Stay ahead of security threats and malware, keeping your site safe with Jetpack Protect. Scan your site and get warned [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-protect\/"},"170689":{"title":"Customize Jetpack Instant&nbsp;Search","excerpt":"Jetpack Search uses an overlay to display all search results when the instant search experience option is enabled. This guide [&hellip;]","url":"https:\/\/jetpack.com\/support\/search\/customizing-jetpack-search\/"},"168474":{"title":"Video Privacy in&nbsp;VideoPress","excerpt":"With VideoPress you are able to select your privacy settings whether leaving your videos to your default site privacy settings, public, or private. You are also able to determine whether or not all of your current and future videos are private.","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/video-privacy\/"},"167465":{"title":"Jetpack WAF (Web Application&nbsp;Firewall)","excerpt":"Jetpack&#8217;s WAF (Web Application Firewall) examines incoming traffic to a WordPress site and decides to allow or block it based [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-waf\/"},"156241":{"title":"QR Post Code","excerpt":"If you're looking for a new way to share your posts try out the QR Post feature.","url":"https:\/\/jetpack.com\/support\/utilities\/qr-post\/"},"156132":{"title":"Automate Critical CSS with Jetpack&nbsp;Boost","excerpt":"When you upgrade to the paid version of Jetpack Boost, you can automatically generate critical CSS every time you make [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/jetpack-boost-automated-critical-css\/"},"156121":{"title":"Use Openverse Media&nbsp;Library","excerpt":"Improve the look of your site with Openverse, a search engine for openly licensed media (previously known as CC Search). [&hellip;]","url":"https:\/\/jetpack.com\/support\/openverse-media-library-support\/"},"148713":{"title":"Google Fonts","excerpt":"Jetpack&#8217;s Google Fonts feature allows you to fully control the different fonts available in your block-enabled theme. Google Fonts is [&hellip;]","url":"https:\/\/jetpack.com\/support\/google-fonts\/"},"149322":{"title":"Jetpack Multisite","excerpt":"Learn about Jetpack support for multisite WordPress installations.","url":"https:\/\/jetpack.com\/support\/multisite\/"},"148988":{"title":"Understand Console Errors in Jetpack&nbsp;Boost","excerpt":"Know when you can safely ignore console errors caused by Jetpack Boost. With Jetpack Boost&#8217;s &#8220;Optimize CSS Loading&#8221; feature, we [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/jetpack-boost-console-error\/"},"149143":{"title":"Twitter Block","excerpt":"With the Twitter block, you can embed Tweets (posts on Twitter) into your website. ","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/twitter-block\/"},"141503":{"title":"Stop spam with Jetpack&nbsp;Akismet","excerpt":"Keep your website free of spam, improving the experience for everyone. (Except the spammers!) Akismet uses state of the art [&hellip;]","url":"https:\/\/jetpack.com\/support\/security\/jetpack-anti-spam\/"},"148401":{"title":"My Jetpack","excerpt":"Manage all of your Jetpack products in one place with the My Jetpack dashboard. My Jetpack is available in your [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/my-jetpack\/"},"141278":{"title":"Resolving Jetpack Connection Issues Caused by Dynamic Site&nbsp;URLs","excerpt":"There are certain website configurations, most commonly encountered on Bitnami sites hosted by Amazon Lightsail, which will cause problems with Jetpack's ability to correctly determine your site URL. ","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/fixing-jetpack-connection-issues\/resolving-jetpack-connection-issues-caused-by-dynamic-site-urls\/"},"139807":{"title":"Add Jetpack IPs to an&nbsp;Allowlist","excerpt":"Control who can (or cannot) access your website by allowing IP addresses in WordPress. Make sure Jetpack can access your [&hellip;]","url":"https:\/\/jetpack.com\/support\/how-to-add-jetpack-ips-allowlist\/"},"132886":{"title":"Change the Video&nbsp;Thumbnail","excerpt":"Be in control of your videos&#8217; preview image, also known as a thumbnail or poster image. Update the poster\/thumbnail image [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/changing-a-videos-thumbnail\/"},"132783":{"title":"Jetpack VideoPress","excerpt":"Host your videos on our servers rather than yours! Load videos more quickly, and say good-bye to third-party video players [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/"},"132788":{"title":"Upload your videos on Jetpack&nbsp;VideoPress","excerpt":"For more efficient video performance, Jetpack VideoPress uses WordPress.com&#8217;s servers rather than your host&#8217;s server. Here is some useful information [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/uploading-a-video-to-jetpack-videopress\/"},"122432":{"title":"Contact Form (Classic&nbsp;Editor)","excerpt":"These instructions are for the Classic Editor. If you are using the Gutenberg editor, please refer to the instructions for [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/contact-form\/contact-form-classic-editor\/"},"122426":{"title":"Markdown (Classic Editor)","excerpt":"Markdown lets you compose posts and comments with links, lists, and other styles using regular characters and punctuation marks. Markdown is used by writers and bloggers who want a quick and easy way to write rich text, without having to take their hands off the keyboard, and without learning a lot of complicated codes and shortcuts.","url":"https:\/\/jetpack.com\/support\/markdown-classic-editor\/"},"122418":{"title":"Add a Video Using the Classic&nbsp;Editor","excerpt":"Jetpack's video hosting feature allows you to upload videos from your computer for hosting and playback directly within your site.","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/video-hosting-classic-editor\/"},"122413":{"title":"Related Posts (Classic&nbsp;Editor)","excerpt":"The Related Posts feature pulls relevant content from your blog to display at the bottom of your posts.","url":"https:\/\/jetpack.com\/support\/related-posts-classic-editor\/"},"121408":{"title":"Log in to your Jetpack&nbsp;Account","excerpt":"There are three different accounts that you may encounter when using Jetpack. These are your WP Admin login, your WordPress.com login, and potentially a WordPress.org Support Forums login.","url":"https:\/\/jetpack.com\/support\/troubleshooting-login-issues\/"},"120953":{"title":"Move your Jetpack Plan to a Different&nbsp;Site\/URL","excerpt":"A Jetpack plan can only be used on a single site, but if you no longer need the plan on the site you purchased it for, and the plan has not yet expired, then we can help you transfer the plan to a different site.","url":"https:\/\/jetpack.com\/support\/move-your-jetpack-plan-to-a-different-site-url\/"},"118309":{"title":"Why the WordPress.com connection is important for&nbsp;Jetpack","excerpt":"The Jetpack connection gives your site access to the WordPress.com cloud and unlocks the collective power of thousands of globally [&hellip;]","url":"https:\/\/jetpack.com\/support\/why-the-wordpress-com-connection-is-important-for-jetpack\/"},"120813":{"title":"Jetpack Boost","excerpt":"Jetpack Boost provides one-click optimizations that supercharge your WordPress site\u2019s performance and improve web vitals\nscores for better SEO.","url":"https:\/\/jetpack.com\/support\/jetpack-boost\/"},"120460":{"title":"What to Do If Your Site is&nbsp;Down","excerpt":"Before looking at restore options, it\u2019s worth considering whether a restore is actually the best solution! It\u2019s possible that your site could be brought back online quickly without resorting to waiting for a restore to complete.","url":"https:\/\/jetpack.com\/support\/what-to-do-if-your-site-is-down\/"},"120070":{"title":"Use Tiled Galleries with the Classic&nbsp;Editor","excerpt":"Tiled Galleries with the Classic Editor: allowing you to display your image galleries as a thumbnail grid, tiled mosaic, square tiles, circles, tiled columns or as a slideshow.","url":"https:\/\/jetpack.com\/support\/classic-tiled-galleries\/"},"119273":{"title":"Troubleshoot Jetpack Backups","excerpt":"If Jetpack is having trouble backing up your site, the steps on this page will help you troubleshooting common backup issues.","url":"https:\/\/jetpack.com\/support\/backup\/troubleshooting-jetpack-backup\/"},"119052":{"title":"Story Block","excerpt":"The Story block allows you to combine photos and videos to create an engaging, tappable full-screen slideshow on your site\u2019s posts and pages. Stories published on your site won\u2019t disappear after 24 hours and you can edit or add to stories after they are published. ","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/story-block\/"},"118410":{"title":"Jetpack plan equivalency&nbsp;chart","excerpt":"This equivalency chart will help you work our which of the new Jetpack plans best matches your needs based on what our older plans offered.","url":"https:\/\/jetpack.com\/support\/jetpack-plan-equivalency-chart\/"},"107402":{"title":"Fixing common SSL certificate&nbsp;errors","excerpt":"How to diagnose and fix issues with SSL certificates on your site.","url":"https:\/\/jetpack.com\/support\/fixes-for-most-common-ssl-certificate-errors\/"},"114820":{"title":"Troubleshoot Jetpack VideoPress&nbsp;Issues","excerpt":"How to resolve common issues with Jetpack Video Hosting.","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/troubleshooting-video-hosting-issues\/"},"108079":{"title":"Use your Google photos with&nbsp;Jetpack","excerpt":"Use your Google Photos directly in Jetpack&#8217;s image-related blocks. Add Google Photos to a page or post To upload photos [&hellip;]","url":"https:\/\/jetpack.com\/support\/using-your-google-photos-with-jetpack\/"},"108009":{"title":"Pexels Free Photo&nbsp;Library","excerpt":"Add copyright-free images on your post or pages by connecting to the Pexels photo library. Finding the right images for [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/pexels-free-photo-library\/"},"107931":{"title":"Clean Your Hacked WordPress&nbsp;Site","excerpt":"Resolve a hack without losing your website. If you use Jetpack Scan to monitor your site, it will notify you [&hellip;]","url":"https:\/\/jetpack.com\/support\/scan\/how-to-clean-your-hacked-wordpress-site\/"},"107634":{"title":"Loom Block","excerpt":"Insert Loom video messages into your site&#8217;s post or page with the Loom block. Add the Loom block The Loom [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/loom-block\/"},"106674":{"title":"Donations Form Block","excerpt":"The Donations block lets you add a payment button to any post or page for donations, tips, and other contributions, using Stripe as the payment gateway.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/donations-block\/"},"106321":{"title":"Lead Capture Form","excerpt":"The Form block lets you add a Newsletter Sign-up form to any post or page.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/form-block\/lead-capture-form\/"},"106711":{"title":"Preview your posts with Social&nbsp;Previews","excerpt":"This extension of the Block Editor allows you to preview what your post \/ page will look like on search engines and social media.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/extension-social-previews\/"},"105896":{"title":"Using the WhatsApp Button&nbsp;block","excerpt":"The WhatsAPP Button block will allow your customers to send you a message to enquire about your product or services, or to ask for support. Clicking on the button will open WhatsApp and pre-fill the phone number and initial message.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/whatsapp-button-block\/"},"105674":{"title":"Jetpack Search: Frequently Asked&nbsp;Questions","excerpt":"Jetpack Search is a powerful replacement for the search capability built into WordPress. For general features and FAQs, please see [&hellip;]","url":"https:\/\/jetpack.com\/support\/search\/frequently-asked-questions\/"},"105647":{"title":"Jetpack Search Product&nbsp;Billing","excerpt":"Pricing for Jetpack Search depends on which plan you have. Learn below how to determine the billing for your Search [&hellip;]","url":"https:\/\/jetpack.com\/support\/search\/jetpack-search-product-billing\/"},"104848":{"title":"Pay with PayPal","excerpt":"Add one or more payment buttons to any post or page, and immediately start taking PayPal payments for physical products, digital goods, or donations.","url":"https:\/\/jetpack.com\/support\/pay-with-paypal\/"},"104814":{"title":"Scope of Support","excerpt":"Get the support you need for using Jetpack products. We provide priority support to customers with paid plans and services. [&hellip;]","url":"https:\/\/jetpack.com\/support\/scope-of-support\/"},"101094":{"title":"Image Compare Block","excerpt":"The Image Compare Block allows you to display and compare the differences between two images side by side (or above and below) thanks to a slider.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/image-compare-block\/"},"97314":{"title":"Latest Instagram Posts&nbsp;Block","excerpt":"The Latest Instagram Posts Block lets you display your most recent images from Instagram on your site. The block update automatically updates when you post new images to Instagram.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/latest-instagram-posts-block\/"},"95361":{"title":"Podcast Player Block","excerpt":"Jetpack's Podcast Player block allows you to easily show your visitors a listing of recent episodes from a podcast and play them on your website.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/podcast-player-block\/"},"95973":{"title":"Jetpack Search","excerpt":"Jetpack's Search feature is a powerful replacement for the search capability built into WordPress. ","url":"https:\/\/jetpack.com\/support\/search\/"},"95618":{"title":"WooCommerce Analytics","excerpt":"Enhanced analytics for WooCommerce and Jetpack users.","url":"https:\/\/jetpack.com\/support\/privacy\/woocommerce-analytics\/"},"92497":{"title":"Google Calendar Block","excerpt":"The Google Calendar block allows you to easily embed a Google Calendar into your post or page","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/google-calendar-block\/"},"92506":{"title":"Revue Block","excerpt":"The Revue block creates a simple signup form for readers to opt-in to receive your newsletter.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/revue-block\/"},"88535":{"title":"Jetpack OpenTable Block","excerpt":"With the OpenTable block, you can add a reservation form on posts or pages.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/opentable-block\/"},"92262":{"title":"Jetpack Calendly Block","excerpt":"Jetpack's Calendly block allows your visitors to schedule one-on-one appointments, group events, and team meetings directly from your website.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/calendly-block\/"},"88411":{"title":"Jetpack Eventbrite Checkout&nbsp;Block","excerpt":"With the Eventbrite block you can embed events on posts or pages.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/eventbrite-block\/"},"82079":{"title":"Migrate your site with Jetpack VaultPress&nbsp;Backup","excerpt":"Cloning allows you to use your Jetpack Backup to migrate your site to a new WordPress install on any server. This is helpful if you decide to move to a new host or if you simply want to create a copy of your site on your current server to use for testing and development.","url":"https:\/\/jetpack.com\/support\/backup\/cloning\/"},"83509":{"title":"Jetpack Pinterest Block","excerpt":"The Pinterest block is the easiest way to embed Pinterest content to your site: it allows you to embed boards, profiles, and pins.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/pinterest-block\/"},"83546":{"title":"Jetpack Star Rating&nbsp;Block","excerpt":"The Ratings block allows any site author to add reviews to the site.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/star-rating-block\/"},"31161":{"title":"Transitioning from VaultPress to Jetpack VaultPress&nbsp;Backup","excerpt":"If you're used to the VaultPress backup system, the new Jetpack Backup interface might feel a little unfamiliar.","url":"https:\/\/jetpack.com\/support\/backup\/transitioning-from-vaultpress-to-jetpack-backup\/"},"82575":{"title":"Protect your site with brute force&nbsp;protection","excerpt":"Jetpack Protect allows you to protect yourself against traditional brute force attacks and distributed brute force attacks that use many servers against your site","url":"https:\/\/jetpack.com\/support\/protect\/"},"27861":{"title":"SSH, SFTP, FTPS, and FTP&nbsp;Credentials","excerpt":"Remote server credentials create a way for Jetpack to access the files on your website&#8217;s server. This access can be [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/adding-credentials-to-jetpack\/ssh-sftp-and-ftp-credentials\/"},"27865":{"title":"Add Remote Server Credentials to&nbsp;Jetpack","excerpt":"Add FTP\/SFTP\/SSH server credentials to get the most out of Jetpack VaultPress Backup and Jetpack Scan When you purchase a [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/adding-credentials-to-jetpack\/"},"74068":{"title":"Payments Block","excerpt":"The Recurring Payments Block lets you add a payment button using Stripe as the payment gateway. It works for one-time and recurring payments or donations.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/payments-block\/"},"67479":{"title":"Social Icons Widget","excerpt":"The Social Icons Widget feature of Jetpack has been deprecated, and social icons are now part of WordPress core. Please [&hellip;]","url":"https:\/\/jetpack.com\/support\/social-icons-widget\/"},"65764":{"title":"Jetpack Repeat Visitor&nbsp;Block","excerpt":"The Repeat Visitor block enables the author to control the visibility of its nested block(s) depending on how many times a visitor has previously visited the page.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/repeat-visitor-block\/"},"65753":{"title":"Progressive Web Application&nbsp;(PWA)","excerpt":"Speed up and improve the reliability of your site using the latest in web technology.","url":"https:\/\/jetpack.com\/support\/progressive-web-apps\/"},"63692":{"title":"Jetpack Mailchimp Block","excerpt":"The Mailchimp block allows visitors to join your Mailchimp list.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/mailchimp-block\/"},"59210":{"title":"Feature Hints","excerpt":"Avoid installing unnecessary plugins; Feature Hints tell you what Jetpack can already do. Jetpack offers many useful features, and it [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/feature-hints\/"},"59067":{"title":"Jetpack Business Hours&nbsp;block","excerpt":"The Business Hours block allows you to display your business\u2019s opening hours on your site.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/business-hours-block\/"},"59087":{"title":"Jetpack Contact Info&nbsp;block","excerpt":"The Contact Info block lets you add your contact information (email address, physical address, phone number) to any post or page.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/contact-info-block\/"},"59048":{"title":"Jetpack Ad Block","excerpt":"The Ad block allows you to insert a Jetpack Ad unit anywhere within the content of any post or page.\ufeff","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/ad-block\/"},"59120":{"title":"Jetpack Slideshow Block","excerpt":"The Slideshow block lets you insert an image slideshow into a post or page.\ufeff","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/slideshow-block\/"},"54283":{"title":"Add GIFs with the Jetpack GIF&nbsp;Block","excerpt":"The GIF block allows you to easily search for and embed an animated GIF image from Giphy directly into a post or page on your WordPress site.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/gif-block\/"},"53378":{"title":"Jetpack Copy Post","excerpt":"Copy Post allows you to easily start new posts based on existing posts. It supports Posts, Pages, Jetpack Testimonials, and Jetpack Portfolios.\ufeff","url":"https:\/\/jetpack.com\/support\/copy-post\/"},"51572":{"title":"Subscribe Block","excerpt":"The Subscription Form Block allows you to insert a subscription form within the content area of any post or page, enabling your readers to get notifications when you publish new posts.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/subscription-form-block\/"},"46996":{"title":"Jetpack Blocks","excerpt":"The\u00a0WordPress Block Editor transforms your way of writing from a single document to a collection of meaningful elements (blocks),\u00a0with explicit structure. Jetpack includes some blocks of its own, which can help you create your pages exactly the way you want them.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/"},"48571":{"title":"Jetpack Map Block","excerpt":"The Map Block allows you to add a map to any post or page on your site.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/map-block\/"},"43708":{"title":"Site Accelerator","excerpt":"Jetpack's global Content Delivery Network (CDN) optimizes files and images so your visitors enjoy the fastest experience regardless of device or location.","url":"https:\/\/jetpack.com\/support\/site-accelerator\/"},"40855":{"title":"Jetpack Flickr Widget","excerpt":"Jetpack's Flickr widget allows you to display photos from your Flickr photostream to any widget area on your site.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/flickr-widget\/"},"36183":{"title":"WordPress.com Reader","excerpt":"The WordPress.com Reader displays posts from any\u00a0WordPress.com or Jetpack connected sites you follow.","url":"https:\/\/jetpack.com\/support\/reader\/"},"35020":{"title":"Transfer your Jetpack connection or plan to another&nbsp;user","excerpt":"You can transfer ownership of your Jetpack connection and\/or your Jetpack Plan to any other connected admin user on your site.","url":"https:\/\/jetpack.com\/support\/transfer-your-jetpack-connection-or-plan-to-another-user\/"},"34978":{"title":"WooCommerce Shipping &amp; Tax and&nbsp;Jetpack","excerpt":"WooCommerce Services\u00a0uses your Jetpack connection to help get your WooCommerce store \u201cready to sell\u201d as quick as possible, by taking care of in-cart shipping rates, tax calculation, payment processing, and shipping label printing!","url":"https:\/\/jetpack.com\/support\/woocommerce-services-and-jetpack\/"},"34911":{"title":"Reconnect and reinstall&nbsp;Jetpack","excerpt":"Disconnecting and reconnecting\u00a0Jetpack will often clear connection problems and help with errors when activating settings.","url":"https:\/\/jetpack.com\/support\/reconnecting-reinstalling-jetpack\/"},"31375":{"title":"Manually Restore a Jetpack VaultPress&nbsp;Backup","excerpt":"Manually restore a Jetpack VaultPress Backup to any host on any server anywhere.&nbsp; Have you tried an automatic restore? Before [&hellip;]","url":"https:\/\/jetpack.com\/support\/backup\/manually-restore-a-backup\/"},"31264":{"title":"Jetpack Scan","excerpt":"Jetpack Scan offers automated malware scanning and one-click threat resolution.","url":"https:\/\/jetpack.com\/support\/scan\/"},"30883":{"title":"Jetpack privacy policy&nbsp;helper","excerpt":"When you create a custom privacy policy for your WordPress site, you can choose what feature-specific privacy information to include. [&hellip;]","url":"https:\/\/jetpack.com\/support\/for-your-privacy-policy\/"},"29023":{"title":"Jetpack Privacy Center","excerpt":"We are fully committed to the privacy and security of our customers and their personal data. In addition to the [&hellip;]","url":"https:\/\/jetpack.com\/support\/privacy\/"},"26849":{"title":"Add PHP Code Without Editing&nbsp;Files","excerpt":"Want to add a code snippet without having to edit your theme's functions.php file? This document explains how to use a functionality plugin instead.","url":"https:\/\/jetpack.com\/support\/adding-code-snippets\/"},"26837":{"title":"Performance","excerpt":"Jetpack offers a range of features to improve the site loading time and make it easier for visitors to find [&hellip;]","url":"https:\/\/jetpack.com\/support\/performance\/"},"26830":{"title":"Lazy Loading Images","excerpt":"Lazy Images are now deprecated.","url":"https:\/\/jetpack.com\/support\/lazy-images\/"},"23433":{"title":"Back up your site with Jetpack VaultPress&nbsp;Backup","excerpt":"Jetpack Backup allows you to easily restore or download a backup from a specific moment in the past. It's like an \"undo\" button for your site.\u00a0","url":"https:\/\/jetpack.com\/support\/backup\/"},"23668":{"title":"Restore a Website with Jetpack VaultPress&nbsp;Backup","excerpt":"With\u00a0Jetpack Backup, you\u00a0can restore your site to a particular point in time -- to a specific day or prior to a specific event, change, or issue that you may have encountered -- with a single click of a button.","url":"https:\/\/jetpack.com\/support\/backup\/restoring-with-jetpack-backup\/"},"23429":{"title":"Jetpack VaultPress Activity&nbsp;Log","excerpt":"The activity log shows a full list of changes that have occurred on your site.","url":"https:\/\/jetpack.com\/support\/backup\/activity-log\/"},"25530":{"title":"Customize Jetpack Inline&nbsp;Search","excerpt":"Let&#8217;s say you run a blog covering various topics like technology, travel, and food. With Inline Search, you have the [&hellip;]","url":"https:\/\/jetpack.com\/support\/search\/inline-search\/customize-inline-search\/"},"16573":{"title":"Troubleshoot Double Encoding&nbsp;issues","excerpt":"When using Jetpack to connect your site to third-party apps like WordPress.com for Google Docs, you may run into a \"Double Encoding\" error. Here is how to fix it.","url":"https:\/\/jetpack.com\/support\/double-encoding\/"},"21508":{"title":"Fix Jetpack Issues","excerpt":"Having trouble connecting Jetpack to WordPress.com? If so, here are eight key steps that can potentially help you solve the problem.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/fixing-jetpack-connection-issues\/"},"23848":{"title":"Control Jetpack Features on the Modules&nbsp;Page","excerpt":"You can control all of Jetpack's features from one simple page.","url":"https:\/\/jetpack.com\/support\/control-jetpack-features-on-one-page\/"},"23670":{"title":"Jetpack Inline Search","excerpt":"Jetpack's Search feature is a powerful replacement for the search capability built into WordPress. ","url":"https:\/\/jetpack.com\/support\/search\/inline-search\/"},"22270":{"title":"Themes","excerpt":"Make your site beautiful and engaging in a snap, using a Jetpack WordPress theme. With Jetpack, you get free access [&hellip;]","url":"https:\/\/jetpack.com\/support\/themes\/"},"20922":{"title":"Comment Likes","excerpt":"Give your users the power to show comments some love! To access Comment Likes, the site must have Comment Likes [&hellip;]","url":"https:\/\/jetpack.com\/support\/comment-likes\/"},"18414":{"title":"Cookies &amp; Consent Banner Jetpack&nbsp;widget","excerpt":"Use this widget to display a cookie notice on your site.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/cookies-consent-banner\/"},"16803":{"title":"Using WordPress.com Toolbar","excerpt":"The WordPress.com Toolbar\u00a0feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.","url":"https:\/\/jetpack.com\/support\/masterbar\/"},"15501":{"title":"Upcoming Events Widget","excerpt":"Display a list of events on your site by using an iCalendar link with the Upcoming Events widget. Obtain an [&hellip;]","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/upcoming-events-widget\/"},"15234":{"title":"Google Analytics","excerpt":"Track your WordPress site statistics thanks to Google Analytics.","url":"https:\/\/jetpack.com\/support\/google-analytics\/"},"14909":{"title":"WordAds","excerpt":"Earn income by displaying high quality ads on your site.","url":"https:\/\/jetpack.com\/support\/ads\/"},"14425":{"title":"Content Options","excerpt":"Content Options allows site owners to make small visual modifications across their site, like hiding the post date or displaying an excerpt instead of a full post.","url":"https:\/\/jetpack.com\/support\/content-options\/"},"14900":{"title":"Milestone Widget","excerpt":"The Milestone Widget provides you with a simple way to create a countdown to a given date.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/milestone-widget\/"},"14896":{"title":"Blog Stats Widget","excerpt":"The Blog Stats Widget displays the total number of views to your blog (not including your own views).","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/blog-stats-widget\/"},"14891":{"title":"Authors Widget","excerpt":"The Authors Widget lets you showcase your blog\u2019s writers in your sidebar.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/authors-widget\/"},"14406":{"title":"Troubleshoot Jetpack Brute Force Attack&nbsp;Protection","excerpt":"Are you unable to enable the Protect feature on your site? Check these tips to find out why.","url":"https:\/\/jetpack.com\/support\/protect\/troubleshooting-protect\/"},"14220":{"title":"SEO Tools","excerpt":"Optimize your site for search engines and social media by taking advantage of our SEO tools. This feature is available in the Jetpack Professional Plan.","url":"https:\/\/jetpack.com\/support\/seo-tools\/"},"14155":{"title":"Safe Mode","excerpt":"Use Safe Mode in Jetpack to prevent issues when switching between development, staging, and production environments. Ensure continuity and prevent [&hellip;]","url":"https:\/\/jetpack.com\/support\/safe-mode\/"},"14182":{"title":"Google Translate Widget","excerpt":"In today's world, you'll want you work to be accessible to everyone -- regardless of the\u00a0languages they speak. The Google Translate\u00a0Widget will help you reach new audiences by allowing your visitors to translate your website into their own language in one click!","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/google-translate-widget\/"},"14140":{"title":"Get more views and traffic with&nbsp;Jetpack","excerpt":"Read some tips to attract more visitors and get more traffic to your site by using Jetpack features. Make your [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/getting-more-views-and-traffic\/"},"13903":{"title":"Blank lines or extra content in&nbsp;XML-RPC","excerpt":"Troubleshoot blank lines or extra content in your site&#8217;s XML-RPC file. Sometimes, when trying to connect Jetpack to your WordPress.com [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/troubleshoot-jetpack-connection-error-messages\/blank-lines-xmlrpc\/"},"12842":{"title":"What Data Does Jetpack&nbsp;Sync?","excerpt":"As part of the required connection to WordPress.com, Jetpack caches your site&#8217;s data to WordPress.com servers (which power all of [&hellip;]","url":"https:\/\/jetpack.com\/support\/what-data-does-jetpack-sync\/"},"12825":{"title":"Configure Jetpack for your&nbsp;not-for-profit","excerpt":"Power up your non-profit site for no cost at all. At Automattic, we believe in making the web a better [&hellip;]","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/configuring-jetpack-for-your-not-for-profit\/"},"12762":{"title":"Features Included in the Core Jetpack&nbsp;Plugin","excerpt":"Security, performance, and site management: the best way to WordPress is with Jetpack.","url":"https:\/\/jetpack.com\/support\/features\/"},"12733":{"title":"Add Untappd menu to your&nbsp;website","excerpt":"Untappd menus are a venue feature where a bar can add a menu of their beers via Untappd. Jetpack includes a shortcode to ease the embed process.","url":"https:\/\/jetpack.com\/support\/shortcode-embeds\/untappd-menu-shortcode\/"},"12477":{"title":"Goodreads Widget","excerpt":"Goodreads provides a service that allows you to share your reading lists with friends. The Goodreads widget allows you to feature some of the books you\u2019ve listed in the sidebar or footer of your WordPress.com site.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/goodreads-widget\/"},"10188":{"title":"Top Posts and Pages&nbsp;Widget","excerpt":"The Top Posts &amp; Pages Widget allows you to display either your most liked posts or up to ten posts that have received the most traffic in the past 48 hours.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/top-posts-pages-widget\/"},"10174":{"title":"Staging Sites","excerpt":"Staging Mode allows site owners to use staging sites without impacting their Jetpack experience. ","url":"https:\/\/jetpack.com\/support\/staging-sites\/"},"8265":{"title":"Sitemaps","excerpt":"Sitemaps are files that list each post and page that should be indexed by search engines like Google or Bing. Jetpack allows you to generate such files thanks to the Sitemaps feature.","url":"https:\/\/jetpack.com\/support\/sitemaps\/"},"8064":{"title":"Use Jetpack and Cloudflare on your WordPress&nbsp;site","excerpt":"Here are a few steps to follow to configure CloudFlare on your site, before installing the Jetpack plugin.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/configure-jetpack-cloudflare\/"},"5763":{"title":"Cookies","excerpt":"Cookies are used by Jetpack in a variety of different ways. This page lists all the cookies that are set for visitors to sites with the Jetpack plugin installed.","url":"https:\/\/jetpack.com\/support\/cookies\/"},"5207":{"title":"Primary User in&nbsp;Jetpack","excerpt":"When a Jetpack site is connected for the first time, the user making the connection is designated as the \u201cJetpack [&hellip;]","url":"https:\/\/jetpack.com\/support\/primary-user\/"},"5135":{"title":"Manage Jetpack via&nbsp;WP-CLI","excerpt":"Learn to manage Jetpack via the WP-CLI commands and configure your Jetpack options and features. Jetpack has built-in support for\u00a0WP-CLI, [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-cli\/"},"5238":{"title":"Disconnect Jetpack Sites","excerpt":"You can find step-by-step guides below that will help you remove a self-hosted WordPress site you had previously connected to your WordPress.com account thanks to the Jetpack plugin.","url":"https:\/\/jetpack.com\/support\/disconnect-jetpack-sites\/"},"4500":{"title":"Plugin Management","excerpt":"Update plugins automatically and in one place with Jetpack&#8217;s plugin management tool. Keep your site secure by making sure your [&hellip;]","url":"https:\/\/jetpack.com\/support\/plugin-management\/"},"4299":{"title":"Custom Content Types in&nbsp;Jetpack","excerpt":"You can use the Custom Content Types feature to custom post types (CPTs) to your site. These CPTs allow you [&hellip;]","url":"https:\/\/jetpack.com\/support\/custom-content-types\/"},"3644":{"title":"Jetpack Accounts and&nbsp;Usernames","excerpt":"Jetpack isn\u2019t accepting my user name?! Why do I have so many?","url":"https:\/\/jetpack.com\/support\/user-names\/"},"3896":{"title":"Troubleshoot Jetpack Social","excerpt":"Posts not being shared to your social media accounts by Jetpack Social? Get things working again. For general features and [&hellip;]","url":"https:\/\/jetpack.com\/support\/jetpack-social\/troubleshooting-jetpack-social\/"},"3635":{"title":"Proofreading","excerpt":"Jetpack can check your spelling, grammar, and style using After the Deadline Proofreading technology. (Please note that this feature is only available in Jetpack version 7.3 and earlier).","url":"https:\/\/jetpack.com\/support\/spelling-and-grammar\/"},"3613":{"title":"Site Verification Tools","excerpt":"Leverage insights from search engines by verifying your WordPress site. Verifying ownership of your site will unlock tools provided by [&hellip;]","url":"https:\/\/jetpack.com\/support\/site-verification-tools\/"},"3541":{"title":"Migrate subscribers from&nbsp;WordPress.com","excerpt":"Now you can migrate your users who have subscribed to your WordPress.com site either by email or via the WordPress.com Reader to your Jetpack-connected self-hosted WordPress site.","url":"https:\/\/jetpack.com\/support\/subscription-migration-tool\/"},"3270":{"title":"Customize Related Posts on non-block&nbsp;themes","excerpt":"Like the other Jetpack features, Related Posts includes filters allowing you to customize the look of the Related Posts to fit all your needs.","url":"https:\/\/jetpack.com\/support\/related-posts\/customize-related-posts\/"},"3128":{"title":"Use Related Posts to Drive&nbsp;Traffic","excerpt":"The Related Posts feature pulls relevant content from your blog to display at the bottom of your posts.","url":"https:\/\/jetpack.com\/support\/related-posts\/"},"3214":{"title":"Markdown Block","excerpt":"Markdown lets you compose posts and comments with links, lists, and other styles using regular characters and punctuation marks. Markdown is used by writers and bloggers who want a quick and easy way to write rich text, without having to take their hands off the keyboard, and without learning a lot of complicated codes and shortcuts.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/markdown\/"},"2987":{"title":"Debug","excerpt":"","url":"https:\/\/jetpack.com\/support\/debug\/"},"2972":{"title":"Enhanced Distribution","excerpt":"Enhanced distribution allows your blog\u2019s public content to be included in the WordPress.com firehose.","url":"https:\/\/jetpack.com\/support\/privacy\/enhanced-distribution\/"},"2952":{"title":"Gravatar Profile widget","excerpt":"The Gravatar profile widget allows you to pull in your Gravatar image along with some of your Gravatar profile data.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/gravatar-profile-widget\/"},"2947":{"title":"Display WordPress Posts Widget in&nbsp;Jetpack","excerpt":"The Display WordPress Posts widget lets you display up to ten recent posts from another WordPress.com blog, or a self-hosted WordPress site with Jetpack enabled.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/display-wordpress-posts-widget\/"},"2939":{"title":"RSS Links widget","excerpt":"The RSS Links Widget allows you to add links to your blog\u2019s post and comment RSS feeds in your sidebar.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/rss-links\/"},"2886":{"title":"WordPress.com Secure Sign&nbsp;On","excerpt":"Using the same log-in credentials you use for WordPress.com, you\u2019ll now be able to register for and sign in to self-hosted WordPress.org sites quickly and securely.","url":"https:\/\/jetpack.com\/support\/sso\/"},"2869":{"title":"Monitor your site&#8217;s uptime and&nbsp;downtime","excerpt":"Jetpack Monitor will keep tabs on your site, and alert you the moment that downtime is detected.","url":"https:\/\/jetpack.com\/support\/monitor\/"},"2849":{"title":"Connect Jetpack on a Heroku-hosted&nbsp;site","excerpt":"When using WordPress on Heroku, you may not be able to connect Jetpack to your WordPress.com account out of the box. Follow the steps here to fix any connection issues you may experience.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/troubleshooting-tips\/jetpack-heroku\/"},"2696":{"title":"Enhance your writing with&nbsp;Jetpack","excerpt":"Authors can find several tools that will help them make their writing process even smoother.","url":"https:\/\/jetpack.com\/support\/writing\/"},"2684":{"title":"Jetpack for developers","excerpt":"If you're a developer, Jetpack includes tools to allow you to extend and customize Jetpack to fit your needs.","url":"https:\/\/jetpack.com\/support\/jetpack-for-developers\/"},"2591":{"title":"Troubleshoot Jetpack connection error&nbsp;messages","excerpt":"Do you experience issues when trying to connect your site to your WordPress.com account? Start by checking the following list of error messages, and what you can do to fix them.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/troubleshoot-jetpack-connection-error-messages\/"},"2592":{"title":"Offline Mode","excerpt":"With Offline Mode, features that do not require a connection to WordPress.com servers can be activated on a localhost WordPress installation for testing.","url":"https:\/\/jetpack.com\/support\/offline-mode\/"},"2583":{"title":"Known issues","excerpt":"Some plugins and themes are known to conflict with some of the features implemented in Jetpack. Until these conflicts are resolved, you can check this list to find out what to do.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/known-issues\/"},"2570":{"title":"Use Jetpack in your&nbsp;language","excerpt":"You can use Jetpack in the language of your choice and suggest new translations using GlotPress, our translation engine.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/how-can-i-install-jetpack-in-my-language\/"},"2566":{"title":"Install Jetpack","excerpt":"You're ready to get started with Jetpack! Great! Now what? This document will show you how to get your Jetpack off the ground.","url":"https:\/\/jetpack.com\/support\/getting-started-with-jetpack\/"},"2470":{"title":"Jetpack Stats","excerpt":"Track how many visits your site gets, and what posts and pages are most popular with Jetpack stats. ","url":"https:\/\/jetpack.com\/support\/jetpack-stats\/"},"2541":{"title":"JSON API in the Jetpack&nbsp;plugin","excerpt":"Jetpack will allow you to authorize applications and services to securely connect to your blog and allow them to use your content in new ways and offer you new functionality.","url":"https:\/\/jetpack.com\/support\/json-api\/"},"2532":{"title":"Infinite Scroll","excerpt":"Instead of having to click a link to get to the next set of posts, infinite scrolling pulls the next posts automatically into view when the reader approaches the bottom of the page.","url":"https:\/\/jetpack.com\/support\/infinite-scroll\/"},"2521":{"title":"Notifications","excerpt":"Toolbar Notifications allow you to view and moderate comments right from the toolbar, anywhere on your site or across WordPress.com.","url":"https:\/\/jetpack.com\/support\/notifications\/"},"2490":{"title":"Jetpack Form Block","excerpt":"A contact form is a great way to offer your readers the ability to get in touch, without giving out your personal email address.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/contact-form\/"},"2473":{"title":"Extra Sidebar Widgets","excerpt":"The \"Extra Sidebar Widgets\" feature includes widgets you can add to your blog. From RSS Links to Twitter Timelines and Facebook Like Boxes, this feature makes it easy to add extra functionality to your site.","url":"https:\/\/jetpack.com\/support\/extra-sidebar-widgets\/"},"2465":{"title":"WP.me Shortlinks","excerpt":"Shortlinks are a quick way to get short and simple links to your posts and pages. They use the wp.me domain so you can have more space to write on social media sites.","url":"https:\/\/jetpack.com\/support\/wp-me-shortlinks\/"},"2324":{"title":"Embed media content using shortcodes with&nbsp;Jetpack","excerpt":"Shortcodes allow you to embed videos from YouTube, tweets from Twitter, and other media across the web directly in to your WordPress-powered site. This feature also allows you to embed elements by pasting URLs on a line by itself in your visual editor.","url":"https:\/\/jetpack.com\/support\/shortcode-embeds\/"},"2451":{"title":"Custom CSS","excerpt":"The Custom CSS Editor allows you to customize the appearance of your theme without the need to create a child theme or worry about theme updates overwriting your customizations.","url":"https:\/\/jetpack.com\/support\/custom-css\/"},"2449":{"title":"Carousel","excerpt":"With Carousel active, any standard WordPress galleries you have embedded in posts or pages will launch a gorgeous full-screen photo browsing experience with comments and EXIF metadata.","url":"https:\/\/jetpack.com\/support\/carousel\/"},"2358":{"title":"Sharing Buttons","excerpt":"Sharing adds buttons to your posts that your readers can use to share your content on popular social networks like Facebook, Twitter, Tumblr, and more!","url":"https:\/\/jetpack.com\/support\/sharing\/"},"2425":{"title":"Control Widget Visibility","excerpt":"The Widget Visibility feature enables you to configure widgets to appear only on certain pages (or be hidden on certain pages) by using the Visibility panel.","url":"https:\/\/jetpack.com\/support\/widget-visibility\/"},"2402":{"title":"Add a VideoPress video using the Block&nbsp;Editor","excerpt":"Jetpack's video hosting feature allows you to upload videos from your computer for hosting and playback directly within your site.","url":"https:\/\/jetpack.com\/support\/jetpack-videopress\/add-video-block-editor\/"},"2401":{"title":"Gravatar Hovercards","excerpt":"Hovercards make it easy to display information from your Gravatar profile. They display next to comments and can include links to your profiles on Twitter, Facebook, Linkedin, and more.","url":"https:\/\/jetpack.com\/support\/gravatar-hovercards\/"},"2372":{"title":"Tiled Gallery Block","excerpt":"With Tiled Galleries you can display your image galleries in four styles: tiled mosaic, circular grid, square tiles, and tiled columns.","url":"https:\/\/jetpack.com\/support\/jetpack-blocks\/tiled-galleries\/"},"2388":{"title":"Beautiful Math with&nbsp;LaTeX","excerpt":"LaTeX is a powerful markup language for writing complex mathematical equations, formulas, and more.","url":"https:\/\/jetpack.com\/support\/beautiful-math-with-latex\/"},"2385":{"title":"Jetpack Newsletter","excerpt":"This page explains how the Subscriptions feature of Jetpack lets visitors to your site sign up to receive notifications of your latest posts.","url":"https:\/\/jetpack.com\/support\/newsletter\/"},"2332":{"title":"Post by Email","excerpt":"Post by Email is a way of publishing posts on your blog by email. Any email client can be used to send the email, allowing you to publish quickly and easily from devices such as cell phones.","url":"https:\/\/jetpack.com\/support\/post-by-email\/"},"2341":{"title":"Troubleshooting Jetpack Comments","excerpt":"If Jetpack comments are turned on, but are not working, there may be an issue with your theme or one of your plugins.","url":"https:\/\/jetpack.com\/support\/comments\/troubleshooting-jetpack-comments\/"},"2300":{"title":"Jetpack Comments","excerpt":"Jetpack Comments replaces your default comment form with a new comment system that has integrated social media login options.","url":"https:\/\/jetpack.com\/support\/comments\/"},"2290":{"title":"Likes","excerpt":"The Like button is a way for people to show their appreciation for your posts. It\u2019s also a way for authors to show the world how popular their content has become.","url":"https:\/\/jetpack.com\/support\/likes\/"},"2295":{"title":"Post to LinkedIn with Jetpack&nbsp;Social","excerpt":"Thanks to the Jetpack Social feature, you can automatically publish each one of your blog posts to your LinkedIn profile.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/linkedin\/"},"2292":{"title":"Post to Tumblr with Jetpack&nbsp;Social","excerpt":"With Jetpack Social's auto-sharing feature, you can effortlessly publish your WordPress blog posts directly to your Tumblr blog. Here's how to set it up and troubleshoot any issues.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/tumblr\/"},"2277":{"title":"Post to your Facebook page with Jetpack&nbsp;Social","excerpt":"Jetpack Social allows you to publish each one of your blog posts to Facebook. Includes information about how to connect to Facebook and troubleshooting steps.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/facebook\/"},"2269":{"title":"Jetpack Social","excerpt":"Jetpack Social makes it easy to share your site's posts on several social media networks automatically when you publish a new post.","url":"https:\/\/jetpack.com\/support\/jetpack-social\/"}}, "queue": [] } jetpackMeReady( function() { _tkq = window._tkq || []; _tkq.push( [ 'recordEvent', 'jetpack_supporthomepage_visit', [] ] ); } ); </script> <footer> <div class="jetpack-footer"> <div class="jetpack-footer__content"> <div class="jetpack-footer__head"> <div> <a href="https://jetpack.com/" aria-label="Jetpack home" class="home-link jetpack-footer__home-link"> <svg class="jetpack-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 139.93 38" aria-hidden="true" width="140" height="38" > <path class="jetpack-emblem" d="M19,0A19,19,0,1,0,38,19,19,19,0,0,0,19,0ZM18,22.15H8.56L18,3.73Zm1.92,12.08V15.81h9.47Z"/> <path d="M49.06,31.55c-.54-.84-1.05-1.67-1.56-2.47,2.68-1.63,3.59-2.94,3.59-5.4V9.43H47.94V6.71h6.7V23C54.64,27.09,53.45,29.41,49.06,31.55Z"/> <path d="M77.16,21.83c0,1.38,1,1.52,1.63,1.52a9.6,9.6,0,0,0,2.32-.43v2.53A10.63,10.63,0,0,1,77.6,26c-1.75,0-3.78-.65-3.78-3.69V14.87H72V12.29h1.84V8.48h3.34v3.81h4.21v2.58H77.16Z"/> <path d="M84.12,32.81V12.26h3.19v1.23a7,7,0,0,1,4.43-1.6c3,0,5.4,2.11,5.4,6.64S94.53,26,90.21,26a12.79,12.79,0,0,1-2.75-.33v7.11H84.12Zm6.75-18.16a5.38,5.38,0,0,0-3.38,1.49v7a11.81,11.81,0,0,0,2.51.26c2.35,0,3.69-1.49,3.69-4.61C93.69,15.92,92.72,14.65,90.87,14.65Z"/> <path d="M110.27,25.71h-3.12V24.22h-.08A6.89,6.89,0,0,1,102.65,26,3.62,3.62,0,0,1,99,22.12c0-3.45,2.94-4.1,5-4.39l2.94-.4v-.4c0-1.81-.73-2.39-2.43-2.39a13.37,13.37,0,0,0-4.39.91l-.29-2.69a17,17,0,0,1,5.11-.87c3.26,0,5.37,1.31,5.37,5.19v8.63Zm-3.34-6.27-2.76.43a1.79,1.79,0,0,0-1.7,1.85,1.5,1.5,0,0,0,1.52,1.7,5.51,5.51,0,0,0,2.94-1.23Z"/> <path d="M124,25.27a12.15,12.15,0,0,1-4.17.76c-5,0-7-2.86-7-7,0-4.39,2.75-7.11,7.21-7.11a10.91,10.91,0,0,1,3.81.66v2.82a11.45,11.45,0,0,0-3.77-.76c-2,0-3.77,1.09-3.77,4.21,0,3.44,1.74,4.49,4,4.49a10,10,0,0,0,3.77-.83v2.79Z"/> <path d="M130.35,18.06c.29-.33.51-.66,4.72-5.77h4.35L134,18.67l6,7.07h-4.36l-5.18-6.38v6.38h-3.34v-19h3.34V18.06Z"/> <path d="M69.47,25.27a15.54,15.54,0,0,1-5,.76c-4.28,0-6.93-2.13-6.93-7.14,0-3.66,2.25-7,6.56-7s5.77,3,5.77,5.8c0,.95-.07,1.46-.11,2H61.17c.07,2.94,1.74,3.62,4.24,3.62a11.57,11.57,0,0,0,4-.83v2.79Zm-3-7.79c0-1.63-.55-3.05-2.32-3.05s-2.69,1.2-2.9,3.05Z"/> </svg> </a> </div> <div class="jetpack-footer__language"> <button aria-label="Select language" class="language-toggle jetpack-footer__language-toggle"> <span>en</span> <svg class="gridicon gridicons-chevron-down" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M20 9l-8 8-8-8 1.414-1.414L12 14.172l6.586-6.586"></path> </svg> </button> </div> </div> <nav class="jetpack-footer__sitemap sitemap" aria-label="Footer"> <ul class="sitemap__list"> <li class="sitemap__category"> <span class="sitemap__category-label">WordPress Plugins</span> <ul class="sitemap__link-list"> <li><a href="https://wordpress.org/plugins/akismet/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap_link">Akismet Anti-spam</a></li> <li><a href="https://wordpress.org/plugins/jetpack/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Jetpack</a></li> <li><a href="https://wordpress.org/plugins/jetpack-boost/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Jetpack Boost</a></li> <li><a href="https://wordpress.org/plugins/zero-bs-crm/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Jetpack CRM</a></li> <li><a href="https://wordpress.org/plugins/jetpack-protect/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap_link">Jetpack Protect</a></li> <li><a href="https://wordpress.org/plugins/jetpack-search/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap_link">Jetpack Search</a></li> <li><a href="https://wordpress.org/plugins/jetpack-social/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap_link">Jetpack Social</a></li> <li><a href="https://wordpress.org/plugins/jetpack-videopress/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap_link">Jetpack VideoPress</a></li> <li><a href="https://wordpress.org/plugins/jetpack-backup/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">VaultPress Backup</a></li> <li><a href="https://wordpress.org/plugins/wp-super-cache/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap_link">WP Super Cache</a></li> <li><a href="https://jetpack.com/download/" class="sitemap__link">Download</a></li> </ul> </li> <li class="sitemap__category"> <span class="sitemap__category-label">Partners</span> <ul class="sitemap__link-list"> <li><a href="https://jetpack.com/hosting/" class="sitemap__link">Recommended Hosts</a></li> <li><a href="https://jetpack.com/for/hosts/" class="sitemap__link">For Hosts</a></li> <li><a href="https://jetpack.com/for-agencies/" class="sitemap__link">For Agencies</a></li> <li><a href="https://jetpack.com/affiliates/" class="sitemap__link">For Affiliates</a></li> </ul> </li> <li class="sitemap__category"> <span class="sitemap__category-label">Developers</span> <ul class="sitemap__link-list"> <li><a href="https://developer.jetpack.com/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Documentation</a></li> <li><a href="https://jetpack.com/beta/" class="sitemap__link">Beta Program</a></li> <li><a href="https://jetpack.com/contribute/" class="sitemap__link">Contribute to Jetpack</a></li> <li><a href="https://github.com/Automattic/jetpack" class="sitemap__link">Jetpack on GitHub</a></li> </ul> </li> <li class="sitemap__category"> <span class="sitemap__category-label">Legal</span> <ul class="sitemap__link-list"> <li><a href="https://wordpress.com/tos/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Terms of Service</a></li> <li><a href="https://automattic.com/privacy/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Privacy Policy</a></li> <li> <a href="https://jetpack.com/gdpr/" class="sitemap__link"> GDPR </a> </li> <li data-is-ccpa-dnsd="1"> <a href="#" data-is-ccpa-dnsd-trigger="1"> Do Not Sell or Share My Personal Information </a> </li> <li data-is-ccpa-dnsd="1"><a href="https://automattic.com/privacy/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer#california-consumer-privacy-act-ccpa" class="sitemap__link">Privacy Notice for California Users</a></li> </ul> </li> <li class="sitemap__category"> <span class="sitemap__category-label">Help</span> <ul class="sitemap__link-list"> <li><a href="https://jetpack.com/support/" class="sitemap__link">Knowledge Base</a></li> <li><a href="https://wordpress.org/support/plugin/jetpack/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer" class="sitemap__link">Forums</a></li> <li><a href="https://jetpack.com/webinars/" class="sitemap__link">Webinars</a></li> <li><a href="https://jetpack.com/testimonials/" class="sitemap__link">Reviews and Testimonials</a></li> <li><a href="https://jetpack.com/features/security/library" class="sitemap__link">Security Library</a></li> <li><a href="https://jetpack.com/contact-support/" class="sitemap__link">Contact Us</a></li> <li><a href="https://jetpack.com/newsroom/" class="sitemap__link">Press</a></li> </ul> </li> <li class="sitemap__category sitemap__category-social"> <span class="sitemap__category-label">Social</span> <ul class="sitemap__link-list social-properties"> <li> <a href="https://twitter.com/jetpack" class="sitemap__link" aria-label="Jetpack X account (formerly known as Twitter)"> <img src="https://s2.wp.com/wp-content/themes/a8c/jetpackme-new/images/icons/icon-x.svg" alt="X (formerly known as Twitter)" loading="lazy" decoding="async"> </a> </li> <li> <a href="https://www.facebook.com/jetpackme/" class="sitemap__link" aria-label="Jetpack Facebook page"> <img src="https://s2.wp.com/wp-content/themes/a8c/jetpackme-new/images/icons/icon-facebook.svg" alt="Facebook" loading="lazy" decoding="async"> </a> </li> <li> <a href="https://www.linkedin.com/company/jetpack-for-wordpress/" class="sitemap__link" aria-label="Jetpack LinkedIn page"> <img src="https://s2.wp.com/wp-content/themes/a8c/jetpackme-new/images/icons/icon-linkedin.svg" alt="LinkedIn" loading="lazy" decoding="async"> </a></li> <li> <a href="https://www.youtube.com/JetpackOfficial" class="sitemap__link" aria-label="Jetpack Youtube channel"> <img src="https://s2.wp.com/wp-content/themes/a8c/jetpackme-new/images/icons/icon-youtube.svg" alt="Youtube" loading="lazy" decoding="async"> </a> </li> </ul> </li> <li class="sitemap__category sitemap__category-mobile"> <span class="sitemap__category-label">Mobile Apps</span> <div class="store-buttons"><ul><li class="play-store-button" data-tracking-id="play-store"><a href="https://play.google.com/store/apps/details?id=com.jetpack.android&#038;referrer=utm_source%3Djetpack.com%26utm_campaign%3Djp_site_shortcode%26utm_medium%3Dwebsite"><img src="https://s1.wp.com/wp-content/lib/app-badge-buttons/android/en.png?version=20220321" alt="Get Jetpack on Google Play" height="40" width="134" loading="lazy" decoding="async"></a></li><li class="app-store-button" data-tracking-id="app-store"><a href="https://apps.apple.com/app/apple-store/id1565481562?ct=jetpack.com--jp_site_shortcode&#038;mt=8&#038;pt=299112"><img src="https://s1.wp.com/wp-content/lib/app-badge-buttons/ios/en.png?version=20220321" alt="Download Jetpack on the App Store" height="40" width="119" loading="lazy" decoding="async"></a></li></ul></div> </li> </ul> </nav> </div> </div> <div class="a8c-footer"> <ul class="a8c-footer__link-list"> <li class="a8c-footer__home"> <a class="a8c-footer__home-link" href="https://automattic.com/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer"> An <img class="a8c-footer__a8c-logo" src="https://s2.wp.com/wp-content/themes/a8c/jetpackme-new/images/logos/logo-a8c-white.svg" alt="Automattic" loading="lazy" decoding="async" /> airline </a> </li> <li class="a8c-footer__work"> <a class="a8c-footer__work-link" href="https://automattic.com/work-with-us/?utm_medium=automattic_referred&#038;utm_source=jpcom_footer"> Work With Us </a> </li> </ul> </div></footer> <script> // Language switcher widget jetpackMeReady( function() { 'use strict'; var locales = [{"code":"en","locale_name":"English","href":"https:\/\/jetpack.com\/support\/"},{"code":"ar","locale_name":"\u0627\u0644\u0639\u0631\u0628\u064a\u0629","href":"https:\/\/jetpack.com\/ar\/support\/"},{"code":"de","locale_name":"Deutsch","href":"https:\/\/jetpack.com\/de\/support\/"},{"code":"es","locale_name":"Espa\u00f1ol","href":"https:\/\/jetpack.com\/es\/support\/"},{"code":"fr","locale_name":"Fran\u00e7ais","href":"https:\/\/jetpack.com\/fr\/support\/"},{"code":"he","locale_name":"\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea","href":"https:\/\/jetpack.com\/he\/support\/"},{"code":"id","locale_name":"Bahasa Indonesia","href":"https:\/\/jetpack.com\/id\/support\/"},{"code":"it","locale_name":"Italiano","href":"https:\/\/jetpack.com\/it\/support\/"},{"code":"ja","locale_name":"\u65e5\u672c\u8a9e","href":"https:\/\/jetpack.com\/ja\/support\/"},{"code":"ko","locale_name":"\ud55c\uad6d\uc5b4","href":"https:\/\/jetpack.com\/ko\/support\/"},{"code":"nl","locale_name":"Nederlands","href":"https:\/\/jetpack.com\/nl\/support\/"},{"code":"pt-br","locale_name":"Portugu\u00eas do Brasil","href":"https:\/\/jetpack.com\/pt-br\/support\/"},{"code":"ru","locale_name":"\u0420\u0443\u0441\u0441\u043a\u0438\u0439","href":"https:\/\/jetpack.com\/ru\/support\/"},{"code":"sv","locale_name":"Svenska","href":"https:\/\/jetpack.com\/sv\/support\/"},{"code":"tr","locale_name":"T\u00fcrk\u00e7e","href":"https:\/\/jetpack.com\/tr\/support\/"},{"code":"zh-cn","locale_name":"\u7b80\u4f53\u4e2d\u6587","href":"https:\/\/jetpack.com\/zh-cn\/support\/"},{"code":"zh-tw","locale_name":"\u7e41\u9ad4\u4e2d\u6587","href":"https:\/\/jetpack.com\/zh-tw\/support\/"}]; var toggles = document.querySelector( '.language-toggle' ); window.WPCOMLocaleSwitcher.init( locales, 'en', '.jetpack.com' ); Array.prototype.forEach.call( document.querySelectorAll( '.language-toggle' ), function ( toggle ) { toggle.addEventListener( 'click', function ( event ) { event.preventDefault(); window.WPCOMLocaleSwitcher.toggle(); const switcher = document.querySelector( '#ls-overlay' ); // Set the focus to the header when activated to allow screen readers to announce the heading const heading = switcher.querySelector( 'h2' ); heading.setAttribute("tabindex", "-1"); heading.focus(); // Trap the focus inside the switcher overlay trapFocus( switcher ); } ) } ); // Hide the CCPA DNSD related content until A8C analytics is loaded. document.querySelectorAll( '[data-is-ccpa-dnsd]' ).forEach( ( element ) => element.style.display = 'none' ); document.addEventListener( 'a8c-analytics:loaded', function ( e ) { document.querySelectorAll( '[data-is-ccpa-dnsd]' ).forEach( ( element ) => element.style.display = '' ); } ); } ); // This function ensures that the focus is trapped within the element function trapFocus( element ) { const focusableElements = element.querySelectorAll( 'a[href], button, textarea, input[type="text"], input[type="radio"], input[type="checkbox"], select, [role="button"]' ); const firstFocusableElement = focusableElements[ 0 ]; const lastFocusableElement = focusableElements[ focusableElements.length - 1 ]; element.addEventListener( 'keydown', function( e ) { var isTabPressed = ( e.key === 'Tab' || e.keyCode === 9 ); if ( ! isTabPressed ) { return; } if ( e.shiftKey ) /* shift + tab */ { if ( document.activeElement === firstFocusableElement ) { lastFocusableElement.focus(); e.preventDefault(); } } else /* tab */ { if ( document.activeElement === lastFocusableElement ) { firstFocusableElement.focus(); e.preventDefault(); } } } ); } </script> <!-- --> <div class="jetpack-instant-search__widget-area" style="display: none"> <div id="jetpack-search-filters-7" class="widget jetpack-filters widget_search"> <div id="jetpack-search-filters-7-wrapper" class="jetpack-instant-search-wrapper"> </div></div> </div> <!-- A8C Analytics [start] --> <script type="text/javascript"> ( function() { 'use strict'; var setupAnalytics = function() { window.a8cAnalyticsConfig = {"cookieBanner":{"version":"2","cssZIndex":50001,"skipBanner":false,"cookieDomain":"jetpack.com","v1CookieName":"sensitive_pixel_option","v2CookieName":"sensitive_pixel_options","v1Text":"Our websites and dashboards use cookies. By continuing, you agree to their use. <a target=\"_blank\" href=\"https:\/\/automattic.com\/cookies\/\">Learn more<\/a>, including how to control cookies.","v2Text":"As an open source company, we take your privacy seriously and want to be as transparent as possible. So: We use cookies to collect some personal data from you (like your browsing data, IP addresses, and other unique identifiers). Some of these cookies we absolutely need in order to make things work, and others you can choose in order to optimize your experience while using our site and services.","v2OptionsText":"Your privacy is critically important to us. We and our partners use, store, and process your personal data to optimize: our <strong>website<\/strong> such as by improving security or conducting analytics, <strong>marketing activities<\/strong> to help deliver relevant marketing or content, and your <strong>user experience<\/strong> such as by remembering your account name, language settings, or cart information, where applicable. You can customize your cookie settings below. Learn more in our <a href=\"https:\/\/automattic.com\/privacy\/\" target=\"_blank\">Privacy Policy<\/a> and <a href=\"https:\/\/automattic.com\/cookies\/\" target=\"_blank\">Cookie Policy<\/a>.","v2EssentialOptionHeading":"Required","v2EssentialOptionText":"These cookies are essential for our websites and services to perform basic functions and are necessary for us to operate certain features, like allowing registered users to authenticate and perform account-related functions, storing preferences set by users (like account name, language, and location), and ensuring our services operate properly.","v2AnalyticsOptionHeading":"Analytics","v2AnalyticsOptionText":"These cookies allow us to optimize performance by collecting information on how users interact with our websites.","v2AdvertisingOptionHeading":"Advertising","v2AdvertisingOptionText":"We and our advertising partners set these cookies to provide you with relevant content and to understand that content\u2019s effectiveness.","v1ButtonText":"Got It!","v2CustomizeButtonText":"Customize","v2AcceptAllButtonText":"Accept all","v2AcceptSelectionButtonText":"Accept selection","hiddenConsents":[],"isLoggedIn":false},"doNotSellDialog":{"contactEmailAddress":"privacypolicyupdates@automattic.com"},"adminAnalytics":"analytics-wpcom-admin.php","fireAnalyticsOptions":[]}; }; if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) { defQueue.items.push( setupAnalytics ); } else { setupAnalytics(); } } )(); </script> <script type="text/javascript"> function getJetpackAnalyticsDefaultConfig() { return { currentUserIdHashShort: "", currentUserEmailHash: "", }; } document.addEventListener( 'a8c-analytics:loaded-is-ccpa', function ( e ) { const isCCPAEligible = JSON.parse(e.detail).isCCPA; if ( ! isCCPAEligible ) { document.querySelectorAll( '[data-is-ccpa-dnsd]' ).forEach( ( element ) => element.remove() ); return; } document.querySelector( '[data-is-ccpa-dnsd-trigger]' ).onclick = function( ev ) { ev.preventDefault(); window.a8cAnalytics.dnsd.show(); } } ); document.addEventListener( 'a8c-analytics:loaded', function () { 'use strict'; var cb = window.a8cAnalytics.cb; var kit = window.a8cAnalytics.kit; var gaOptimize = window.a8cGAOptimize || null; var ssGAOptimize = window.a8cAnalyticsConfig.ssGAOptimize || null; gaOptimize = gaOptimize && gaOptimize.isEnabled() ? gaOptimize : null; var config = getJetpackAnalyticsDefaultConfig(); function fireAffiliateReferrals() { kit.attachScriptElement( 'https://refer.wordpress.com/wp-content/themes/refer-wordpress/assets/js/referrals.min.js?v=20240312', null, null, { 'data-vendor': 67401 } ); } function fireGoogleAnalyticsWithGtag() { kit.loadGtag( 'UA-52447-43', { anonymize_ip: true, linker: { domains: [ 'wordpress.com' ] } } ); } function fireGoogleTagManager() { kit.loadGoogleTagManager( 'GTM-MWWK6WM' ); } function fireGoogleAnalyticsFour() { const TAG_ID = 'G-K8CRH0LL00'; // GA4 Property ID: 274359814 // IP anonymization is the default kit.loadGtag( TAG_ID ); window.fixLinkerData = window.fixLinkerData || {}; gtag( 'get', TAG_ID, 'client_id', function( client_id ) { window.fixLinkerData.cid = client_id; } ); gtag( 'get', TAG_ID, 'session_id', function( session_id ) { window.fixLinkerData.sid = session_id; } ); } function fireFacebook() { kit.loadFacebook(); fbq( 'init', '919484458159593' ); fbq( 'track', "PageView" ); } function fireBing() { (function( w, d, t, r, u ) { var f, n, i; w[ u ] = w[ u ] || [], f = function() { var o = { ti: "4074038" }; o.q = w[ u ], w[ u ] = new UET( o ), w[ u ].push( "pageLoad" ) }, n = d.createElement( t ), n.src = r, n.async = 1, n.onload = n.onreadystatechange = function() { var s = this.readyState; s && s !== "loaded" && s !== "complete" || ( f(), n.onload = n.onreadystatechange = null ) }, i = d.getElementsByTagName( t )[ 0 ], i.parentNode.insertBefore( n, i ) } )( window, document, "script", "//s1.wp.com/wp-content/mu-plugins/a8c-analytics/3rd-party/bing/bat.js?v=20190826", "uetq" ); } function fireHotjar() { // Don't fire session trackers if the user is in a state with sensitive session tracker laws if ( kit.pertainsToSTS() ) { return; } if ( window.location.pathname.startsWith( '/individual-plugins' ) ) { kit.fireHotjar( '6240' ); } } function fireLinkedinInsight() { kit.loadLinkedinInsight( "4537722" ); const pixelImage = kit.loadPixelImage( "https://px.ads.linkedin.com/collect/?pid=4537722&fmt=gif" ); pixelImage.style.display = "none"; document.body.appendChild( pixelImage ); } function fireTwitter() { kit.loadTwitter(); twq('config','odlje'); } function loadGoogleAdsGtag() { kit.loadGtag( 'AW-946162814' ); } function loadFullStory() { if ( window.location.pathname.startsWith( '/support' ) || window.location.pathname.startsWith( '/blog' ) || window.location.pathname.startsWith( '/contact-support' ) || /^\/\d{4}\/\d{2}\/\d{2}\//.test( window.location.pathname ) ) { return; } else { kit.loadFullStory( '181XXV' ); } } function fireImpactAffiliate() { kit.loadImpactAffiliate( config.currentUserIdHashShort, config.currentUserEmailHash ); } if ( kit.doNotTrack() ) { if ( gaOptimize ) { gaOptimize.endAsyncDim(); } return; } function applyLinkers() { kit.linkQueryVars( [ { includeRegExps: [ /^(?:[^\/]+\.)?(?:wordpress|jetpack|woocommerce|crowdsignal|wpjobmanager)\.com(?:\/|$)/i, ], linkQueryVars: [ 'aff', 'affiliate', 'cid', // Aff campaign ID. 'sid', // Aff sub ID. 'gclid', // Google Ads 'irclickid', // Impact Affiliate Click ID ], }, { includeRegExps: [ /^(?:[^\/]+\.)?(?:wordpress|jetpack)\.com(?:\/|$)/i, ], linkQueryVars: [ 'coupon', ], }, ] ); } // ------- Apply Linkers ------- applyLinkers(); // ------- Fire Normal Pixels ------- cb.addTracker( 'analytics', false, fireAffiliateReferrals ); // ------- Fire "Sensitive" Pixels ------- cb.addTracker( 'advertising', true, fireGoogleAnalyticsWithGtag ); cb.addTracker( 'advertising', true, fireGoogleTagManager ); cb.addTracker( 'analytics', true, loadFullStory ); cb.addTracker( 'advertising', true, loadGoogleAdsGtag ); cb.addTracker( 'advertising', true, fireFacebook ); cb.addTracker( 'advertising', true, fireBing ); cb.addTracker( 'analytics', true, fireGoogleAnalyticsFour ); cb.addTracker( 'advertising', true, fireHotjar ); cb.addTracker( 'advertising', true, fireLinkedinInsight ); cb.addTracker( 'advertising', true, fireTwitter ); cb.addTracker( 'advertising', true, fireImpactAffiliate ); } ); </script> <script type="text/javascript"> ( function() { 'use strict'; var currentScript = document.currentScript; var setupAnalytics = function() { function getScript() { var script = document.createElement( 'script' ); var prev = currentScript || document.getElementsByTagName( 'script' )[ 0 ]; script.setAttribute( 'src', "https:\/\/s0.wp.com\/wp-content\/mu-plugins\/a8c-analytics\/a8c-analytics.js?v=1729607242" ); script.setAttribute( 'async', true ); prev.parentNode.insertBefore( script, prev ); } getScript(); }; if ( window.defQueue && defQueue.isLOHP && defQueue.isLOHP === 2020 ) { defQueue.items.push( setupAnalytics ); } else { setupAnalytics(); } } )(); </script> <!-- A8C Analytics [end] --> <div style="display:none"> </div> <div id="jp-carousel-loading-overlay"> <div id="jp-carousel-loading-wrapper"> <span id="jp-carousel-library-loading">&nbsp;</span> </div> </div> <div class="jp-carousel-overlay" style="display: none;"> <div class="jp-carousel-container"> <!-- The Carousel Swiper --> <div class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions" itemscope itemtype="https://schema.org/ImageGallery"> <div class="jp-carousel swiper-wrapper"></div> <div class="jp-swiper-button-prev swiper-button-prev"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12"> <path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/> </mask> <g mask="url(#maskPrev)"> <rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> </div> <div class="jp-swiper-button-next swiper-button-next"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12"> <path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/> </mask> <g mask="url(#maskNext)"> <rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/> </g> </svg> </div> </div> <!-- The main close buton --> <div class="jp-carousel-close-hint"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14"> <path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/> </mask> <g mask="url(#maskClose)"> <rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> </div> <!-- Image info, comments and meta --> <div class="jp-carousel-info"> <div class="jp-carousel-info-footer"> <div class="jp-carousel-pagination-container"> <div class="jp-swiper-pagination swiper-pagination"></div> <div class="jp-carousel-pagination"></div> </div> <div class="jp-carousel-photo-title-container"> <h2 class="jp-carousel-photo-caption"></h2> </div> <div class="jp-carousel-photo-icons-container"> <a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility"> <span class="jp-carousel-icon"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20"> <path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/> </mask> <g mask="url(#maskInfo)"> <rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> </span> </a> <a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility"> <span class="jp-carousel-icon"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20"> <path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/> </mask> <g mask="url(#maskComments)"> <rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> <span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span> </span> </a> </div> </div> <div class="jp-carousel-info-extra"> <div class="jp-carousel-info-content-wrapper"> <div class="jp-carousel-photo-title-container"> <h2 class="jp-carousel-photo-title"></h2> </div> <div class="jp-carousel-comments-wrapper"> <div id="jp-carousel-comments-loading"> <span>Loading Comments...</span> </div> <div class="jp-carousel-comments"></div> <div id="jp-carousel-comment-form-container"> <span id="jp-carousel-comment-form-spinner">&nbsp;</span> <div id="jp-carousel-comment-post-results"></div> <form id="jp-carousel-comment-form"> <label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label> <textarea name="comment" class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea" id="jp-carousel-comment-form-comment-field" placeholder="Write a Comment..." ></textarea> <div id="jp-carousel-comment-form-submit-and-info-wrapper"> <div id="jp-carousel-comment-form-commenting-as"> <fieldset> <label for="jp-carousel-comment-form-email-field">Email (Required)</label> <input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" /> </fieldset> <fieldset> <label for="jp-carousel-comment-form-author-field">Name (Required)</label> <input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" /> </fieldset> <fieldset> <label for="jp-carousel-comment-form-url-field">Website</label> <input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" /> </fieldset> </div> <input type="submit" name="submit" class="jp-carousel-comment-form-button" id="jp-carousel-comment-form-button-submit" value="Post Comment" /> </div> </form> </div> </div> <div class="jp-carousel-image-meta"> <div class="jp-carousel-title-and-caption"> <div class="jp-carousel-photo-info"> <h3 class="jp-carousel-caption" itemprop="caption description"></h3> </div> <div class="jp-carousel-photo-description"></div> </div> <ul class="jp-carousel-image-exif" style="display: none;"></ul> <a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;"> <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18"> <path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/> </mask> <g mask="url(#mask0)"> <rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/> </g> </svg> <span class="jp-carousel-download-text"></span> </a> <div class="jp-carousel-image-map" style="display: none;"></div> </div> </div> </div> </div> </div> </div> <link crossorigin='anonymous' rel='stylesheet' id='all-css-0-2' href='https://s2.wp.com/_static/??-eJydjEEKgCAQAD+UrR6KLtFbTJfQdJXWxe9HUB/oOMMw0KtyhRpSgyyqJjkCMURs1brzZWAhyMVLQgZnryKMCbiHipfahXzC0TEP8H/2NZ94fltezbxMxkx61vEGx+U/hQ==&cssminify=yes' type='text/css' media='all' /> <style id='core-block-supports-inline-css'> .wp-elements-818cfd7698a4e230c354dfe1240e970b a:where(:not(.wp-element-button)){color:var(--wp--preset--color--blue-50);}.wp-container-content-1{grid-column:span 1;grid-row:span 1;}@container (max-width: 24.5rem ){.wp-container-content-1{grid-column:auto;grid-row:auto;}}.wp-elements-3653de835752e7d44f3463417435de45 a:where(:not(.wp-element-button)){color:var(--wp--preset--color--white);} </style> <script crossorigin='anonymous' type='text/javascript' src='https://s2.wp.com/_static/??/wp-content/js/mobile-useragent-info.js,/wp-content/mu-plugins/jetpack-plugin/sun/jetpack_vendor/automattic/jetpack-assets/build/i18n-loader.js?m=1724856138j'></script> <script type="text/javascript" id="wp-jp-i18n-loader-js-after"> /* <![CDATA[ */ wp.jpI18nLoader.state = {"baseUrl":"https://widgets.wp.com/languages/","locale":"en_US","domainMap":{"jetpack-admin-ui":"plugins/jetpack","jetpack-assets":"plugins/jetpack","jetpack-backup-pkg":"plugins/jetpack","jetpack-blaze":"plugins/jetpack","jetpack-boost-core":"plugins/jetpack","jetpack-boost-speed-score":"plugins/jetpack","jetpack-classic-theme-helper":"plugins/jetpack","jetpack-compat":"plugins/jetpack","jetpack-config":"plugins/jetpack","jetpack-connection":"plugins/jetpack","jetpack-explat":"plugins/jetpack","jetpack-forms":"plugins/jetpack","jetpack-image-cdn":"plugins/jetpack","jetpack-import":"plugins/jetpack","jetpack-ip":"plugins/jetpack","jetpack-jitm":"plugins/jetpack","jetpack-licensing":"plugins/jetpack","jetpack-masterbar":"plugins/jetpack","jetpack-my-jetpack":"plugins/jetpack","jetpack-password-checker":"plugins/jetpack","jetpack-plugins-installer":"plugins/jetpack","jetpack-post-list":"plugins/jetpack","jetpack-protect-models":"plugins/jetpack","jetpack-protect-status":"plugins/jetpack","jetpack-publicize-pkg":"plugins/jetpack","jetpack-search-pkg":"plugins/jetpack","jetpack-stats":"plugins/jetpack","jetpack-stats-admin":"plugins/jetpack","jetpack-sync":"plugins/jetpack","jetpack-videopress-pkg":"plugins/jetpack","jetpack-waf":"plugins/jetpack","jetpack-wordads":"plugins/jetpack","woocommerce-analytics":"plugins/jetpack"},"domainPaths":{"jetpack-admin-ui":"jetpack_vendor/automattic/jetpack-admin-ui/","jetpack-assets":"jetpack_vendor/automattic/jetpack-assets/","jetpack-backup-pkg":"jetpack_vendor/automattic/jetpack-backup/","jetpack-blaze":"jetpack_vendor/automattic/jetpack-blaze/","jetpack-boost-core":"jetpack_vendor/automattic/jetpack-boost-core/","jetpack-boost-speed-score":"jetpack_vendor/automattic/jetpack-boost-speed-score/","jetpack-classic-theme-helper":"jetpack_vendor/automattic/jetpack-classic-theme-helper/","jetpack-compat":"jetpack_vendor/automattic/jetpack-compat/","jetpack-config":"jetpack_vendor/automattic/jetpack-config/","jetpack-connection":"jetpack_vendor/automattic/jetpack-connection/","jetpack-explat":"jetpack_vendor/automattic/jetpack-explat/","jetpack-forms":"jetpack_vendor/automattic/jetpack-forms/","jetpack-image-cdn":"jetpack_vendor/automattic/jetpack-image-cdn/","jetpack-import":"jetpack_vendor/automattic/jetpack-import/","jetpack-ip":"jetpack_vendor/automattic/jetpack-ip/","jetpack-jitm":"jetpack_vendor/automattic/jetpack-jitm/","jetpack-licensing":"jetpack_vendor/automattic/jetpack-licensing/","jetpack-masterbar":"jetpack_vendor/automattic/jetpack-masterbar/","jetpack-my-jetpack":"jetpack_vendor/automattic/jetpack-my-jetpack/","jetpack-password-checker":"jetpack_vendor/automattic/jetpack-password-checker/","jetpack-plugins-installer":"jetpack_vendor/automattic/jetpack-plugins-installer/","jetpack-post-list":"jetpack_vendor/automattic/jetpack-post-list/","jetpack-protect-models":"jetpack_vendor/automattic/jetpack-protect-models/","jetpack-protect-status":"jetpack_vendor/automattic/jetpack-protect-status/","jetpack-publicize-pkg":"jetpack_vendor/automattic/jetpack-publicize/","jetpack-search-pkg":"jetpack_vendor/automattic/jetpack-search/","jetpack-stats":"jetpack_vendor/automattic/jetpack-stats/","jetpack-stats-admin":"jetpack_vendor/automattic/jetpack-stats-admin/","jetpack-sync":"jetpack_vendor/automattic/jetpack-sync/","jetpack-videopress-pkg":"jetpack_vendor/automattic/jetpack-videopress/","jetpack-waf":"jetpack_vendor/automattic/jetpack-waf/","jetpack-wordads":"jetpack_vendor/automattic/jetpack-wordads/","woocommerce-analytics":"jetpack_vendor/automattic/woocommerce-analytics/"}}; /* ]]> */ </script> <script type="text/javascript" crossorigin='anonymous' src="https://s0.wp.com/wp-content/plugins/gutenberg-core/v19.6.4/build/url/index.min.js?m=1731954715i&amp;ver=499ac283dc628dfb623e" id="wp-url-js"></script> <script type="text/javascript" id="jetpack-instant-search-js-before"> /* <![CDATA[ */ var JetpackInstantSearchOptions=JSON.parse(decodeURIComponent("%7B%22overlayOptions%22%3A%7B%22colorTheme%22%3A%22light%22%2C%22enableInfScroll%22%3Atrue%2C%22enableFilteringOpensOverlay%22%3Atrue%2C%22enablePostDate%22%3Atrue%2C%22enableSort%22%3Atrue%2C%22highlightColor%22%3A%22%23e6f2e8%22%2C%22overlayTrigger%22%3A%22results%22%2C%22resultFormat%22%3A%22minimal%22%2C%22showPoweredBy%22%3Atrue%2C%22defaultSort%22%3A%22relevance%22%2C%22excludedPostTypes%22%3A%5B%5D%7D%2C%22homeUrl%22%3A%22https%3A%5C%2F%5C%2Fjetpack.com%22%2C%22locale%22%3A%22en%22%2C%22postsPerPage%22%3A10%2C%22siteId%22%3A20115252%2C%22postTypes%22%3A%7B%22post%22%3A%7B%22singular_name%22%3A%22Post%22%2C%22name%22%3A%22Posts%22%7D%2C%22page%22%3A%7B%22singular_name%22%3A%22Page%22%2C%22name%22%3A%22Pages%22%7D%2C%22attachment%22%3A%7B%22singular_name%22%3A%22Media%22%2C%22name%22%3A%22Media%22%7D%2C%22security%22%3A%7B%22singular_name%22%3A%22Vulnerability%22%2C%22name%22%3A%22Vulnerabilities%22%7D%2C%22jetpack_support%22%3A%7B%22singular_name%22%3A%22Article%22%2C%22name%22%3A%22Support%22%7D%7D%2C%22webpackPublicPath%22%3A%22https%3A%5C%2F%5C%2Fs2.wp.com%5C%2Fwp-content%5C%2Fmu-plugins%5C%2Fjetpack-plugin%5C%2Fsun%5C%2Fjetpack_vendor%5C%2Fautomattic%5C%2Fjetpack-search%5C%2Fbuild%5C%2Finstant-search%5C%2F%22%2C%22isPhotonEnabled%22%3Atrue%2C%22isFreePlan%22%3Afalse%2C%22apiRoot%22%3A%22https%3A%5C%2F%5C%2Fpublic-api.wordpress.com%5C%2F%22%2C%22apiNonce%22%3A%22ad5866c5e6%22%2C%22isPrivateSite%22%3Afalse%2C%22isWpcom%22%3Atrue%2C%22hasOverlayWidgets%22%3Atrue%2C%22widgets%22%3A%5B%7B%22filters%22%3A%5B%7B%22name%22%3A%22Post%20Types%22%2C%22type%22%3A%22post_type%22%2C%22count%22%3A20%2C%22widget_id%22%3A%22jetpack-search-filters-7%22%2C%22filter_id%22%3A%22post_type_0%22%7D%2C%7B%22name%22%3A%22Categories%22%2C%22type%22%3A%22taxonomy%22%2C%22taxonomy%22%3A%22category%22%2C%22count%22%3A6%2C%22widget_id%22%3A%22jetpack-search-filters-7%22%2C%22filter_id%22%3A%22taxonomy_1%22%7D%2C%7B%22name%22%3A%22Year%22%2C%22type%22%3A%22date_histogram%22%2C%22count%22%3A5%2C%22field%22%3A%22post_date%22%2C%22interval%22%3A%22year%22%2C%22widget_id%22%3A%22jetpack-search-filters-7%22%2C%22filter_id%22%3A%22date_histogram_2%22%7D%5D%2C%22widget_id%22%3A%22jetpack-search-filters-7%22%7D%5D%2C%22widgetsOutsideOverlay%22%3A%5B%5D%2C%22hasNonSearchWidgets%22%3Afalse%2C%22preventTrackingCookiesReset%22%3Atrue%2C%22adminQueryFilter%22%3A%7B%22bool%22%3A%7B%22should%22%3A%5B%7B%22term%22%3A%7B%22post_type%22%3A%22jetpack_support%22%7D%7D%5D%7D%7D%7D")); /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s0.wp.com/wp-content/mu-plugins/jetpack-plugin/sun/jetpack_vendor/automattic/jetpack-search/build/instant-search/jp-search.js?m=1731341983i'></script> <script type="text/javascript" crossorigin='anonymous' src="//stats.wp.com/w.js?ver=202448" id="jp-tracks-js"></script> <script type="text/javascript" id="coblocks-loader-js-extra"> /* <![CDATA[ */ var wpcom_coblocks_js = {"coblocks_masonry_js":"https:\/\/s2.wp.com\/wp-content\/plugins\/coblocks\/2.18.1-simple-rev.4\/dist\/js\/coblocks-masonry.min.js","coblocks_lightbox_js":"https:\/\/s2.wp.com\/wp-content\/plugins\/coblocks\/2.18.1-simple-rev.4\/dist\/js\/coblocks-lightbox.min.js","jquery_core_js":"\/wp-includes\/js\/jquery\/jquery.min.js","jquery_migrate_js":"\/wp-includes\/js\/jquery\/jquery-migrate.min.js","masonry_js":"\/wp-includes\/js\/masonry.min.js","imagesloaded_js":"\/wp-includes\/js\/imagesloaded.min.js"}; var coblocksLigthboxData = {"closeLabel":"Close Gallery","leftLabel":"Previous","rightLabel":"Next"}; /* ]]> */ </script> <script type="text/javascript" id="jetpack-carousel-js-extra"> /* <![CDATA[ */ var jetpackSwiperLibraryPath = {"url":"https:\/\/s2.wp.com\/wp-content\/mu-plugins\/jetpack-plugin\/sun\/_inc\/build\/carousel\/swiper-bundle.min.js"}; var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https:\/\/jetpack.com\/wp-admin\/admin-ajax.php","nonce":"00335cf28c","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https:\/\/jetpack.com?logmein=1&redirect_to=https:\/\/jetpack.com\/support\/jetpack-boost\/image-performance-guide\/","blog_id":"20115252","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=20115252&v=wpcom&tz=0&user_id=0&subd=jetpackme","is_public":"1"}; /* ]]> */ </script> <script crossorigin='anonymous' type='text/javascript' src='https://s2.wp.com/_static/??-eJylkNFuwyAMRX9o4NJVaV+mfcpEiJU4BYMwjN9fVpWtivrWN9+re49lQ0vKRS7IBZKvM7GAi6OP7ipw1OaijRIKyaPK+K1PMJEUWP9Dykc7YdaBWK/yBg+8smBAAXtxsGJJ1l0DKsb2W1/w1to1PI2wUe22ba4ogllJo+IWzNAH1WiasfRct19BlWxZvC0UWfacUFX/y/2IuwapDF/EDsZKfgJnc6yC/i/WjWeveaD2mGrJxbCTW+8zfJjz+8GY4TgM6w/Ji6C7'></script> <script type="text/javascript"> (function () { var wpcom_reblog = { source: 'toolbar', toggle_reblog_box_flair: function (obj_id, post_id) { // Go to site selector. This will redirect to their blog if they only have one. const postEndpoint = `https://wordpress.com/post`; // Ideally we would use the permalink here, but fortunately this will be replaced with the // post permalink in the editor. const originalURL = `${ document.location.href }?page_id=${ post_id }`; const url = postEndpoint + '?url=' + encodeURIComponent( originalURL ) + '&is_post_share=true' + '&v=5'; const redirect = function () { if ( ! window.open( url, '_blank' ) ) { location.href = url; } }; if ( /Firefox/.test( navigator.userAgent ) ) { setTimeout( redirect, 0 ); } else { redirect(); } }, }; window.wpcom_reblog = wpcom_reblog; })(); </script> <script type="text/javascript"> // <![CDATA[ (function() { try{ if ( window.external &&'msIsSiteMode' in window.external) { if (window.external.msIsSiteMode()) { var jl = document.createElement('script'); jl.type='text/javascript'; jl.async=true; jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(jl, s); } } }catch(e){} })(); // ]]> </script><script src="//stats.wp.com/w.js?67" defer></script> <script type="text/javascript"> _tkq = window._tkq || []; _stq = window._stq || []; _tkq.push(['storeContext', {'blog_id':'20115252','blog_tz':'0','user_lang':'en','blog_lang':'en','user_id':'0'}]); _stq.push(['view', {'blog':'20115252','v':'wpcom','tz':'0','user_id':'0','subd':'jetpackme'}]); _stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1lSiYrZXhzUkM5fD1uTDNLUGt6QzVbd3FKb3Q4aWxfXXI3YWo4Qz1OQTklbU5iaFcmUVFuNjY9c2xqOUdMWmdBL19wOGp1T3xISjRRdT1tTj0xUG4vS0p4Y3xOZ2JRWVpORElfQUFfS0I0RTVyaVNCWFtdSHNVZmRNW2tBSnY/cWkuSUtbL0cyLUMsVWxydCtmRGMwLk5TY0svLWU0d2g4aS98bTlyZSsvRGRfY3IwUTJWQT05UzJvYWNNaGNkREdoJW5MRFk/JWJ2Q2ZybjdwQm5rUFRbLEhSTFBFakkmfj83LzYxY0xuOGEtRXNsd2hCZF1pMT0zaFhqQkMyLVAxMTV3Q2dBNEVUMmUsWGJ4aDUubmFzNUVVV0J+ZytRREloQzdCYV1UPVZzSA=='}]); _stq.push([ 'clickTrackerInit', '20115252', '0' ]); </script> <noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript> <script defer id="bilmur" data-customproperties="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;a8c\/jetpackme-new&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}" data-provider="wordpress.com" data-service="simple" src="/wp-content/js/bilmur.min.js?i=12&m=202448"></script><script defer id="bilmur" data-customproperties="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;a8c\/jetpackme-new&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}" data-provider="wordpress.com" data-service="simple" src="/wp-content/js/bilmur-4.min.js?i=12&m=202448"></script><script crossorigin='anonymous' type='text/javascript' src='https://s0.wp.com/wp-content/themes/a8c/jetpackme-new/js/utm-tracking.js?m=1729699933i'></script> <script> ( function() { function getMobileUserAgentInfo() { if ( typeof wpcom_mobile_user_agent_info === 'object' ) { wpcom_mobile_user_agent_info.init(); var mobileStatsQueryString = ''; if ( wpcom_mobile_user_agent_info.matchedPlatformName !== false ) { mobileStatsQueryString += '&x_' + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName; } if ( wpcom_mobile_user_agent_info.matchedUserAgentName !== false ) { mobileStatsQueryString += '&x_' + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName; } if ( wpcom_mobile_user_agent_info.isIPad() ) { mobileStatsQueryString += '&x_' + 'ipad_views' + '=' + 'views'; } if ( mobileStatsQueryString != '' ) { new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random(); } } } document.addEventListener( 'DOMContentLoaded', getMobileUserAgentInfo ); } )(); </script> </body> </html> <!-- generated in 1.671 seconds 293394 bytes batcached for 300 seconds -->

Pages: 1 2 3 4 5 6 7 8 9 10