View hc_add_robots.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
//prevents all pages, except the home page, from being indexed by search engines | |
if(window.location.pathname.match(/\/hc\/(.*)\/([a-z])/)) { | |
var meta = document.createElement('meta'); | |
meta.name = 'robots'; | |
meta.content = 'noindex'; | |
document.getElementsByTagName('head')[0].appendChild(meta); | |
} | |
</script> |
View web_widget_chat_dept_status.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script id="ze-snippet" src="https://static.zdassets.com/ekr/snippet.js?key=YOUR_WEB_WIDGET_KEY_GOES_HERE"> </script> | |
<script type="text/javascript"> | |
var department_name = 'Sales'; | |
zE('webWidget:on', 'chat:connected', function() { | |
zE('webWidget', 'updateSettings', { | |
webWidget: { | |
chat: { | |
departments: { | |
enabled: [department_name], |
View hc_add_custom_font.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** BELLABOO font by Marcelo Reis Melo ***/ | |
/*** http://freegoodiesfordesigners.blogspot.com/2015/02/hipster-free-font-bellaboo-by-marcelo.html ***/ | |
@font-face { | |
font-family: 'BELLABOO-Regular'; | |
font-style: normal; | |
font-weight: 400; | |
src: url('$assets-bellaboo-regular-eot'); /* IE9 Compat Modes */ | |
src: url('$assets-bellaboo-regular-eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ | |
url('$assets-bellaboo-regular-woff2') format('woff2'), /* Super Modern Browsers */ |
View document_head.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
<!-- Opens the chat widget automatically | |
Example: https://SUBDOMAIN.zendesk.com/hc?start_chat=true&customer_name=John&customer_email=john@example.com | |
--> | |
jQuery.extend({ | |
getQueryParameters : function(str) { | |
return (str || document.location.search).replace(/(^\?)/,'').split("&").map(function(n){return n = n.split("="),this[n[0]] = n[1],this}.bind({}))[0]; | |
} | |
}); | |
View Posts-do-Instagram.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="instagram-feed" class="hide listagem"> | |
<div class="titulo-categoria borda-principal cor-principal"> | |
<strong>Siga-nos no Instagram <a href="https://instagram.com/meluorganicos">@meluorganicos</a></strong> | |
</div> | |
<!-- SnapWidget --> | |
<script src="https://snapwidget.com/js/snapwidget.js"></script> | |
<iframe src="https://snapwidget.com/embed/348522" class="snapwidget-widget" allowTransparency="true" frameborder="0" scrolling="no" style="border:none; overflow:hidden; width:100%; margin-top: 10px;"></iframe> | |
</div> | |
<script type="text/javascript"> | |
$(document).ready(function() { |
View depoimentos-loja-integrada-v2.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
1. Crie um novo código HTML (https://app.lojaintegrada.com.br/painel/configuracao/html/criar) | |
2. Descrição: Depoimentos | |
3. Local de publicação: Rodapé | |
4. Página: home | |
5. Tipo: HTML | |
6. Conteúdo: cole todo o código abaixo | |
7. Divirta-se | |
--> | |
<div id="depoimentos"> |
View forcar-ssl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
1. Crie um novo código HTML (https://app.lojaintegrada.com.br/painel/configuracao/html/criar) | |
2. Descrição: Forçar SSL | |
3. Local de publicação: Rodapé | |
4. Página: Todas as páginas | |
5. Tipo: Javascript | |
6. Conteúdo: cole todo o código abaixo | |
7. Divirta-se | |
--> | |
View depoimentos-loja-integrada.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
1. Crie um novo código HTML (https://app.lojaintegrada.com.br/painel/configuracao/html/criar) | |
2. Descrição: Depoimentos | |
3. Local de publicação: Rodapé | |
4. Página: home | |
5. Tipo: HTML | |
6. Conteúdo: cole todo o código abaixo | |
7. Divirta-se | |
--> |
View hide_form_dropdown.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(document).ready(function() { | |
$('#request_issue_type_select option[value="31391"]').closest('div').hide(); | |
}); | |
</script> |
NewerOlder