Magento shop static block with different content in shops

740 Views Asked by At

so as you read title, i need help with magento static block, my task is to make static block content different in 2 shops, if it's even possible? ty for answers. P.S. Sorry for bad english.

2

There are 2 best solutions below

0
On BEST ANSWER

Try this one it works for me. I made it with html/javascript. You can get store name by

var shopName= '{{config path="general/store_information/name"}}';

and then compare by your needs. Paste code into static block editor.

<!DOCTYPE html>
<html>
<body onload="websiteMessage()">  
<p>Happy new years !!!</p>  
<p id="static_block"></p>

<script>
function websiteMessage() {
    var shopName= '{{config path="general/store_information/name"}}';
    var string = "";

if(shopName.localeCompare("Leather_shoes_shop") == 0)
{
    string = "leather shoes";
} 
else if(shopName.localeCompare("Rubber_shoes_shop") == 0)
{
    string = "rubber shoes";
} 
else 
{
    string = "other";
}
document.getElementById('static_block').innerHTML = string;
}
</script>
</body>
</html>
0
On

FYI the correct Magento way to do this in multi-store is to create 2 static block with the same ID and assign each one to the store view you want it to show on. Magento will load the correct version based on the current store being viewed.