WordPress – Contributor Can’t Add Media or Featured Image to Posts or Events

WP Article: http://wordpress.stackexchange.com/questions/77613/allow-contributor-role-to-upload-images-and-not-edit-already-published-articles

Plugin: https://wordpress.org/plugins/user-role-editor/

Used the User Role Editor plugin and had to change one setting to allow this functionality. After installation, go to “Users”, “User Role Editor”, Select Contributor from the drop down and check the box “upload files”. Click update and it’s done. Can be managed as multi-site or individual sites.

 

if ( current_user_can(‘contributor’) && !current_user_can(‘upload_files’) )
add_action(‘admin_init’, ‘allow_contributor_uploads’);

function allow_contributor_uploads() {
$contributor = get_role(‘contributor’);
$contributor->add_cap(‘upload_files’);
}

Mouse Freezing/Hesitating

*For Microsoft Windows Vista (and windows 7)
Click Start, and type device manager in the Start Search box.
Click Device Manager in the Programs list.
If you are prompted for an administrator password or confirmation, type your password or click Continue.
In the Device Manager dialog box, expand Universal Serial Bus controllers.
Right-click USB Root Hub and then click Properties.
In the USB Root Hub Properties dialog box, click the Power Management tab.
Remove the check from the Allow the computer to turn off this device to save power check box. Repeat steps 1 through 4 for each USB Root Hub listed in the Device Manager.

WordPress – Audio Song Titles

You can use iTunes to import songs by following these steps:

(1) Open iTunes
(2) Go to “File, Add File to Library”
(3) Select all the files for one CD
(4) Sort the music library by “Date Added”
(5) Right click on any of the new imported songs and click “Show in Windows Explorer”
(6) Upload these songs to WordPress and the meta data is intact.

Songs can be truncated for demo play by using the “Get info” section on each song. Go to the “Options” tab and select the start and stop times and click “Remember playback position”

Songs that were truncated by a different software tool may or may not contain the meta data contained in each song and therefore the song titles will not be included after uploading to WordPress.

WordPress – Audio Playlist Album Cover Truncated

This works for multi-site.

Edit file: wp-includes/js/mediaelement/wp-mediaelement.css

Use F3 search function in text editor mode and find: wp-playlist-current-item

The default height shown is 60px.

Change it to 150px

Also change ????

}

.wp-playlist-current-item .wp-playlist-item-title,
(ADDED) .wp-playlist-current-item .wp-playlist-item-album,
.wp-playlist-current-item .wp-playlist-item-artist {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
(ADDED) padding: 10px;
(ADDED) font-weight: bold;
}