當顧客點擊上方LOGO圖會回到部落格首頁,但也可以調整為點擊時導回官網首頁
「頁面設定 > 部落格 > HTML區塊 > 首頁(Top)」
複製以下語法後於區塊中貼上
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('.top').find('a').attr({
href:'首頁連結',
target: '_blank'
});
});
</script>
・紅字「首頁連結」請改為你的商店網址,例如:https://freestore.tw
・藍字「_blank」代表點擊時為另開新頁,若需要在原頁刷新請改為「_self」