Why my homepage doesn't display a cms block content?
I have programmatically created a CMS block, which is working fine. I've added some content into it and trying to display it in my homepage.
My block identifier is this_is_a_block_identifier
. I'm trying to call it in content->pages->home page->edit
by adding:
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
After, I'm clearing a cache. But instead of displaying a content, it just displays a text, which is that block class calling (as I showed above).
Why?
magento2 cms cms-block
add a comment |
I have programmatically created a CMS block, which is working fine. I've added some content into it and trying to display it in my homepage.
My block identifier is this_is_a_block_identifier
. I'm trying to call it in content->pages->home page->edit
by adding:
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
After, I'm clearing a cache. But instead of displaying a content, it just displays a text, which is that block class calling (as I showed above).
Why?
magento2 cms cms-block
add a comment |
I have programmatically created a CMS block, which is working fine. I've added some content into it and trying to display it in my homepage.
My block identifier is this_is_a_block_identifier
. I'm trying to call it in content->pages->home page->edit
by adding:
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
After, I'm clearing a cache. But instead of displaying a content, it just displays a text, which is that block class calling (as I showed above).
Why?
magento2 cms cms-block
I have programmatically created a CMS block, which is working fine. I've added some content into it and trying to display it in my homepage.
My block identifier is this_is_a_block_identifier
. I'm trying to call it in content->pages->home page->edit
by adding:
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
After, I'm clearing a cache. But instead of displaying a content, it just displays a text, which is that block class calling (as I showed above).
Why?
magento2 cms cms-block
magento2 cms cms-block
edited Aug 28 '18 at 9:28
Qaisar Satti
26.9k1256109
26.9k1256109
asked Aug 28 '18 at 9:15
HELPMEHELPME
1497
1497
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
To call static block in cms page
block id="this_is_a_block_identifier"
Reference
add a comment |
It seems you have forget to use " before MagentoCms so please use below code .
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
add a comment |
Looking at your question, it seems that you have typo mistake in calling the block.
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
should be
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
Notice the double quote before Magento
.
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
add a comment |
A possibility is that your forgot to enable the block for the store view of your home page. There's a list widget just above the block content of the block edit page. You can use Ctrl + click to select multiple store view where the block should show up.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f239851%2fwhy-my-homepage-doesnt-display-a-cms-block-content%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
To call static block in cms page
block id="this_is_a_block_identifier"
Reference
add a comment |
To call static block in cms page
block id="this_is_a_block_identifier"
Reference
add a comment |
To call static block in cms page
block id="this_is_a_block_identifier"
Reference
To call static block in cms page
block id="this_is_a_block_identifier"
Reference
answered Aug 28 '18 at 9:37
AddifyAddify
7095
7095
add a comment |
add a comment |
It seems you have forget to use " before MagentoCms so please use below code .
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
add a comment |
It seems you have forget to use " before MagentoCms so please use below code .
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
add a comment |
It seems you have forget to use " before MagentoCms so please use below code .
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
It seems you have forget to use " before MagentoCms so please use below code .
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
answered Aug 28 '18 at 9:22
Ansar HusainAnsar Husain
1,707218
1,707218
add a comment |
add a comment |
Looking at your question, it seems that you have typo mistake in calling the block.
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
should be
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
Notice the double quote before Magento
.
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
add a comment |
Looking at your question, it seems that you have typo mistake in calling the block.
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
should be
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
Notice the double quote before Magento
.
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
add a comment |
Looking at your question, it seems that you have typo mistake in calling the block.
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
should be
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
Notice the double quote before Magento
.
Looking at your question, it seems that you have typo mistake in calling the block.
block class=MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
should be
block class="MagentoCmsBlockBlock" block_id="this_is_a_block_identifier"
Notice the double quote before Magento
.
answered Aug 28 '18 at 9:19
Mohit Kumar AroraMohit Kumar Arora
6,67351633
6,67351633
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
add a comment |
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
I did that, but this doesn't help. I got just a text in my home page.
– HELPME
Aug 28 '18 at 10:41
add a comment |
A possibility is that your forgot to enable the block for the store view of your home page. There's a list widget just above the block content of the block edit page. You can use Ctrl + click to select multiple store view where the block should show up.
add a comment |
A possibility is that your forgot to enable the block for the store view of your home page. There's a list widget just above the block content of the block edit page. You can use Ctrl + click to select multiple store view where the block should show up.
add a comment |
A possibility is that your forgot to enable the block for the store view of your home page. There's a list widget just above the block content of the block edit page. You can use Ctrl + click to select multiple store view where the block should show up.
A possibility is that your forgot to enable the block for the store view of your home page. There's a list widget just above the block content of the block edit page. You can use Ctrl + click to select multiple store view where the block should show up.
answered Aug 28 '18 at 11:42
Jacco van DorpJacco van Dorp
1013
1013
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f239851%2fwhy-my-homepage-doesnt-display-a-cms-block-content%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown