Hello,
For hide in Adsvertisment board in editor in frontend buttons: "Article", "Page break" and "Read more"
You need go to file:
{yours site}/components/com_advertisementboard/advertisementboard.html.php
find row look like:
Code: |
editorArea( 'editor1', $row->comment, 'comment', '410', '200', '60', '10') ;
|
and replace to
Code: |
editorArea( 'editor1', $row->comment, 'comment', '410', '200', '60', '10',false) ;
|
also you need open file
{yours site}/administrator/components/com_advertisementboard/compat.joomla1.5.php
find code
Code: |
function editorArea($name, $content, $hiddenField, $width, $height, $col, $row) {
jimport( 'joomla.html.editor' );
$editor = JFactory::getEditor();
echo $editor->display($hiddenField, $content, $width, $height, $col, $row);
|
and replace to
Code: |
function editorArea($name, $content, $hiddenField, $width, $height, $col, $row,$option=true) {
jimport( 'joomla.html.editor' );
$editor = JFactory::getEditor();
echo $editor->display($hiddenField, $content, $width, $height, $col, $row,$option);
|
Thanks,
OrdaSoft team