Hello,
Since i install security patch, i only have one problem.
All grid of my magento have title with no html interprate.
https://www.casimages.com/i/191127091254415715.png.html
As you can see on this picture for the magebird_popup grid, on each title, i have <br/> <span>...
I don't found why i have this problem
(Sorry for my english, i hope you understand my request).
Thank you
Solved! Go to Solution.
Hello !
I found the problem this morning.
In app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php
I had
. $this->escapeHtml($this->getColumn()->getHeader()) . '</span></a>';
i delete the escape html
. $this->getColumn()->getHeader().'</span></a>';
And it's working !
Thank
@dazai_dolbac have you checked by flushing cache and try to open in incognito mode of chrome.
If you had not flush the cache yet then try it using below command.
php bin/magento cache:flush
Thanks
Hi,
Thank, but yes i have flush the cache 15 times :x but this not resolv my problem
@dazai_dolbac have you checked the logs?
Yes, i have nothing in my error.log, access.log (in var/log/nginx) et nothing in my report/system.log/exception.log (in my project/var).
Sincerely
Thank you, but i did too,
Next time i should describe what i already try ! Sorry!
@dazai_dolbac can you please share the errors on your browser console if any?
That why i ask here, i have nothing in my logs, nothing in my console, 0 ajax error in my network. Incredible, 0 indice to resolv this.
Hello !
I found the problem this morning.
In app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Renderer/Abstract.php
I had
. $this->escapeHtml($this->getColumn()->getHeader()) . '</span></a>';
i delete the escape html
. $this->getColumn()->getHeader().'</span></a>';
And it's working !
Thank