By Jeff Koehler on Saturday, 30 November 2013
Replies 5
Likes 0
Views 875
Votes 0
Could you give me the code to hide the section of the single blogger layout where it says "Blogger has not set up their biography yet"? See attachment C:\fakepath\Screen Shot 2013-11-29 at 5.30.44 PM.png

Also, I would like the code to hide the tags and publishing options from the write layout shown in attachment C:\fakepath\Screen Shot 2013-11-29 at 5.36.41 PM.png

Could someone please help me out with this?

Thanks!
Hello Jeff,

I am really sorry for the delay of this reply as it is a weekend for us here.
Do you mean that when the user haven't set their biography, just make it empty and do not show this sentences "Blogger has not set up their biography yet" right? If yes, you can remove the code from JoomlaFolder\administrator\components\com_easyblog\tables\profile.php
REMOVE LINE 263 until 269
 
if( empty( $status ) )
{
$lang = JFactory::getLanguage();
$lang->load( 'com_easyblog' , JPATH_ROOT );

$status = JText::sprintf( 'COM_EASYBLOG_BIOGRAPHY_NOT_SET' , $this->getName() );
}


Remove Tag Option
JoomlaFolder\components\com_easyblog\themes\dashboard\system\dashboard.write.tags.php
REMOVE LINE 37 until 70

<div class="write-posttags">
<div class="ui-sectionsep"><div><?php echo JText::_('COM_EASYBLOG_DASHBOARD_WRITE_TAGS_HEADING'); ?></div></div>
<div class="tag-form">

<div class="tag-creation">
<ul class="tag-list creation reset-ul float-li clearfix">
<?php if ($this->acl->rules->create_tag): ?>
<li class="new-tag-item">
<input type="text" name="tag-input" class="tag-input tagInput canCreate width-full" autocomplete="off"/>
<button type="button" class="tag-create"><?php echo JText::_('COM_EASYBLOG_ADD_TAG'); ?></button>
</li>
<?php endif; ?>
</ul>
</div>

<div class="tag-selection no-selection">
<?php if (!$this->acl->rules->create_tag): ?>
<div class="tag-selection-filter-container"><input type="text" class="tag-selection-filter tagInput" autocomplete="off"/></div>
<?php endif; ?>

<div class="tag-no-selection-hint"><?php echo JText::_('COM_EASYBLOG_DASHBOARD_NO_TAGS_AVAILABLE'); ?></div>

<ul class="tag-list selection reset-ul float-li clearfix"></ul>

<div class="tag-selection-actions clearfix">
<a class="ui-button show-all-tags"><?php echo JText::_( 'COM_EASYBLOG_DASHBOARD_SHOW_ALL_TAGS' ); ?></a>

<?php if( $system->config->get( 'max_tags_allowed' ) > 0 ) { ?>
<span class="tag-limit"><span class="total-tags">0</span>/<span class="max-tags"><?php echo $system->config->get( 'max_tags_allowed' ); ?> <?php echo JText::_( 'COM_EASYBLOG_NUMBER_TAGS_ALLOWED' ); ?></span></span>
<?php } ?>
</div>
</div>
</div>
</div>


Unfortunately the "Publishing Options" can't make hide or remove it About the "Publishing under", "Creation date", "Publishing date" and "Unpublishing date" can't make it remove, because when the user create a new post need to save this kind of data in the database, so the post can verify which user and date to post it in your blog. Only this few option can set it disable from your backend setting, see my screenshot below :
>> http://screencast.com/t/Q387vmfbeo
Hope this help.
·
Saturday, 30 November 2013 13:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect. Thanks!
I have another question and I am not sure you will be able to answer it because it isn't an Easyblog question, just more of a website question.

I added a facebook like button to my website. The problem is that when someone clicks "Like" it says "you like Home" see screen shot. This happens no matter what page you are on when you click the like button.

Do you know how I can change this to say "you like WeeklyTales.com"?

Thanks!
·
Saturday, 30 November 2013 23:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jeff,

You're welcome
I'm not sure we can help you on this, actually how to reproduce in your issues? Could you can provide some instruction how to find out your facebook LIKE button and your website URL. Please advise.
·
Sunday, 01 December 2013 00:07
·
0 Likes
·
0 Votes
·
0 Comments
·
The like button is directly under the main menu. When you click the button it says "you like home" no matter what menu item I am on. I would like to customize what this says and if possible customize the picture that is shown.

Thanks!
http://weeklytales.com
·
Sunday, 01 December 2013 01:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jeff,

I am really sorry for the delay of this reply as it is a weekend for us here.
I have tried to click "LIKE" button, but that word already modified to "Confirm Like", is it you meant of this part? see my video below :
>> http://screencast.com/t/tldqYwELbAn

I guess if you have this kind of plugin ( facebook/social media plugin ), it should have a option to set it out.
Because we have checked your page source code last night, it seems like your "og:title" didn't set it correctly ( http://screencast.com/t/FRsH8ni63AVu ), but now i check again your page source code, it already different ( http://screencast.com/t/BGIzg1V8hkRu ). Is it you did something last day?
·
Sunday, 01 December 2013 11:19
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post