FUEL-CMS
FUEL-CMS copied to clipboard
Prolem when create page from fuel admin page
Dear team,
Please help me, when i create page from fuel admin (lastest version) successfull. But, after view page body content have remove some html tag (input tag, button tag, i tag html icon...). How to create page content include input tag, button tag, i tag html icon ... from admin page ?
Thanks team
That sounds like something that the HTML purifier may be stripping out as a default security setting. Try changing the fuel/application/config/purifier.php
by updating the HTML.allowed
to include the tags you need to enter in.
That sounds like something that the HTML purifier may be stripping out as a default security setting. Try changing the
fuel/application/config/purifier.php
by updating theHTML.allowed
to include the tags you need to enter in.
I changed config HTML.allowed but HTML purifier not support input tag, div tag data attribute. And html font awesome still removed (). Please help me check.
Thanks team
There is an "enabled" parameter in the fuel/application/config/purifier.php
that you can set to FALSE
.
There is an "enabled" parameter in the
fuel/application/config/purifier.php
that you can set toFALSE
.
Dear team,
I have disable purifier but html tag i not content inside ( icon css fontawesome ) still removed.
What is the HTML code you are trying to put in your page?
I use html icon font awaresome at here https://fontawesome.com/v4/icons/
Right, but what is the code you are entering in the Pages module that is getting stripped out... and is it in the "Body" field or some other template field?
Here, I put html code in body field. I disable purifier but html tag i (red rectangle in screenshot) still removed after save page.
I'm having a hard time replicating that problem. Can you paste in the text you are using in the screenshot here?
test.txt Please help me check content in test.txt file. I can't send content from git editor because git remove html tag in content.
Thanks
Try using the add code button:
I can't see button in tool bar. But i use source mode parse html code. Please check screenshot
Hi this is html code <i class="fa fa-download"></i>
Can you send all the text you have in that body field? It may be CKEditor stripping things out. You can test by changing the text_editor
config value in fuel/application/config/MY_fuel.php
to the following to see if that is the problem:
$config['text_editor'] = 'markitup';
Can you send all the text you have in that body field? It may be CKEditor stripping things out. You can test by changing the
text_editor
config value infuel/application/config/MY_fuel.php
to the following to see if that is the problem:$config['text_editor'] = 'markitup';
Hi team,
I try change config editor to markitup and every ok.
Thanks a lot.