By Jeff Koehler on Monday, 25 November 2013
Replies 3
Likes 0
Views 0.9K
Votes 0
How can I make changes to the write new post form in Easyblog for Joomla 3.2? I want to do the following:
1. Remove the Your Dashboard Link at the top of the form (it says "Your Dashboard > Write New Post)
2. Change the wording for "Enter a Blog Title" to "Enter an Article Title"
3. Remove the writing toolbar that says "Older Posts" "Embedded Video" "Published"
I also want to remove the option to "Insert Image" found in the insert tab

At a minimum I would like to be able to get rid of the ability for the blogger to embed a video and insert an image.

Could anyone help me out with this?

Thanks!
1. Remove the Your Dashboard Link at the top of the form (it says "Your Dashboard > Write New Post)

Paste this in your custom template CSS.
#eblog-wrapper .user-brief {
display: none;
}


2. Change the wording for "Enter a Blog Title" to "Enter an Article Title"

JOOMLA\language\en-GB\en-GB.com_easyblog.ini
look for and edit the value.
COM_EASYBLOG_DASHBOARD_WRITE_DEFAULT_TITLE


3. Remove the writing toolbar that says "Older Posts" "Embedded Video" "Published"

Paste this in your custom template CSS.
.ui-medialink {
display: none;
}


At a minimum I would like to be able to get rid of the ability for the blogger to embed a video and insert an image.

Or you could set it up at the backend > easyblog > ACL > Registered and set the rules to what users can do or not do.
screenshot --> http://screencast.com/t/nHHkQpHF4e

Hope that helps
Thanks:)
·
Monday, 25 November 2013 13:15
·
0 Likes
·
0 Votes
·
0 Comments
·
What excellent response time. Much appreciated. The changes worked great!
·
Tuesday, 26 November 2013 02:28
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jeff,

I'm glad that your issue is solved If you have any problems please don't hesitate to ask us.

Have a nice day
·
Tuesday, 26 November 2013 09:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post