Where is "My Blog" page builder?

Can't find "My Blogs" page on admin page builder.

Any ideas?

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 23 Feb 2011

You can't find it in the page builders because it's one of those few pages that are not in the builders.

https://www.deanbassett.com
Quote · 23 Feb 2011

Do you know where can I comment out the 'Action' box on that page?

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 23 Feb 2011

I think so.

modules\boonex\blogs\classes\BxBlogsModule.php at about line 797 look for this.

$sBlogActionsSect = ($sBlogActionsVal != '') ? DesignBoxContent ( _t('_Actions'), $sBlogActionsVal, 1) : '';

$sDescriptionSect = DesignBoxContent(_t('_Overview'), $this->getPostOverviewBlock(), 1);
$sCategoriesSect = $this->getPostCategoriesBlock();
$sTagsSect = DesignBoxContent (_t('_Tags'), $this->getPostTagsBlock(), 1);

$sFeaturedSectCont = $this->getPostFeatureBlock();
$sFeaturedSect = ($sFeaturedSectCont) ? DesignBoxContent (_t('_bx_blog_Featured_Posts'), $this->getPostFeatureBlock(), 1) : '';

return $sBlogActionsSect . $sActionsSect . $sDescriptionSect . $sCategoriesSect . $sFeaturedSect . $sTagsSect;

Comment out the line marked in red like so.

//$sBlogActionsSect = ($sBlogActionsVal != '') ? DesignBoxContent ( _t('_Actions'), $sBlogActionsVal, 1) : '';

$sDescriptionSect = DesignBoxContent(_t('_Overview'), $this->getPostOverviewBlock(), 1);
$sCategoriesSect = $this->getPostCategoriesBlock();
$sTagsSect = DesignBoxContent (_t('_Tags'), $this->getPostTagsBlock(), 1);

$sFeaturedSectCont = $this->getPostFeatureBlock();
$sFeaturedSect = ($sFeaturedSectCont) ? DesignBoxContent (_t('_bx_blog_Featured_Posts'), $this->getPostFeatureBlock(), 1) : '';

return $sBlogActionsSect . $sActionsSect . $sDescriptionSect . $sCategoriesSect . $sFeaturedSect . $sTagsSect;

https://www.deanbassett.com
Quote · 23 Feb 2011

You did it again Superman.

I wish I could help you back someday.

Thank you.

Sometimes communicating your problem and putting it out there is enough to solve it
Quote · 23 Feb 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.