By Milan on Wednesday, 06 August 2014
Posted in Technical Issues
Replies 5
Likes 0
Views 763
Votes 0
Hi there,

I have read the thread http://stackideas.com/forums/publishing-options-removing

I have the same problem and would like to know how can I set the settings in user account mentioned in the thread off. I would prefere to do it without any hacks.

Cheers
Milan
Hello Milan Mojzis,

Unfortunately we do not have the option to disable this, but you can put this css hack in your template css file, so it will hidden this permalink option.

#ezblog-dashboard .permalink-editor, #ezblog-dashboard .permalink-editor strong {
display: none !important;
}

hope this help.
·
Wednesday, 06 August 2014 23:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,

Thank you for the code.

I have put this code: #ezblog-dashboard .permalink-editor, #ezblog-dashboard .permalink-editor strong {
display: none !important;
}

into this file: your_css.css
in this derectory: /abcjazyky.cz/templates/sj_plus/css

Unfortunately, it seems it does not chance anything. Can you help me, please?

Cheers
Milan
·
Friday, 08 August 2014 17:11
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Milan,

Sorry for late reply to this,
I have checked in your site, it seems like your template structure have a little different, so i have help you applied that code block in
JoomlaFolder/templates/system/css/system.css
Hope this help.
·
Friday, 08 August 2014 23:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,

Thank you for your help.

1.
I would like to set off further settings:
Create date
Publish date
Unpublish date

By the way, "Send mail notification button" send mail to whoom - to user or to admin?

2.
It seems that the hack won´t have long life. With the next Joomla update will the fille be overwritten. Isn´t there any better solution for the code placement?

Cheers
Milan
·
Sunday, 10 August 2014 01:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Milan,

I am really sorry for the delay of this reply as it is a weekend for us here.
Can you try open this file and add the following code and see how it goes?
JoomlaFolder\components\com_easyblog\themes\dashboard\system\dashboard.write.options.php

//LINE 193
<li>
<label><?php echo JText::_('COM_EASYBLOG_DASHBOARD_WRITE_CREATION_DATE'); ?> : </label>

//LINE 213
<li>
<label><?php echo JText::_('COM_EASYBLOG_PUBLISHING_DATE'); ?> :</label>

// LINE 232
<li>
<label><?php echo JText::_('COM_EASYBLOG_DASHBOARD_WRITE_UNPUBLISH_DATE'); ?> :</label>

// ===================================================================================
// 3 above LINE i mentioned you have to add style="display:none;"
// Example
<li style="display:none;">


By the way, "Send mail notification button" send mail to whoom - to user or to admin?

>> This is depend on who is the author of this blog post, if the author is admin, so the email notification will send to your user.
>> You can look for the setting from your backend > Easyblog > Setting > notification.
2.
It seems that the hack won´t have long life. With the next Joomla update will the fille be overwritten. Isn´t there any better solution for the code placement?

>> Yes, you have to backup on this file for every time update in the future. Because all the option is define on <li> html tag, it will not able to hide it use in CSS.
Create date
Publish date
Unpublish date


Hope this help.
·
Sunday, 10 August 2014 12:09
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post