Forum Discussion
VarunGrazitti
10 years agoBoss
vishwajit_shind - In the back end, the page doesn't have separate component for the original post area being displayed at the bottom. So, you need to use some jQuery to acheive this. Add this code to the edit page in a component. Here is a sample code, try this:
<@liaAddScript>
(function($) {
$(document).ready(function() {
var bottomArea = $('.lia-panel.lia-panel-section.lia-component-editor').html();
$('.lia-quilt-row.lia-quilt-row-standard.lia-form-buttons-empty-left-column').append(bottomArea);
$('.lia-panel.lia-panel-section.lia-component-editor').hide();
});
})(LITHIUM.jQuery);
</@liaAddScript>
I hope it helps.
Related Content
- 11 years ago