Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Ulrich

    (@grapplerulrich)

    What was the previous version that you were using? Where exactly did you splash image?

    Thread Starter Platoscave

    (@platoscave)

    It is in the edit playlist form. Please see this screenshot: https://images.humancondition.com/playlist_screenshot.png

    Thread Starter Platoscave

    (@platoscave)

    And sorry, this is Version 1.10.6

    Plugin Author Ulrich

    (@grapplerulrich)

    I checked the code in version 1.10.6 and could not find the option. Did you have anyone make any code changes to your site. If so they may have added code in the plugin which got overriden when you udpated.

    Thread Starter Platoscave

    (@platoscave)

    Could you possibly tell me which file is responsible for the playlist GUI. I assume this is the file that I will need to check to see if some change has been made?

    Thank you for your time looking into this.

    Thread Starter Platoscave

    (@platoscave)

    Hi Again Ulrich,

    Yes, we had made the customisation into the file flowplayer5/admin/class-flowplayer5-taxonomy-meta.php . Only a thought but you might want to add the option to the plugin. I think it’s a very handy addition.

    I added this at line 129:

    <div class="form-field fp5-select-splash">
    			<label for="term_meta[fp5-select-splash]"><?php _e( 'Select Splash Image', 'flowplayer5' ); ?></label>
    			<input class="media-url" type="text" name="term_meta[fp5-select-splash]" id="term_meta[fp5-select-splash]" value="<?php if ( isset ( $term_meta['fp5-select-splash'] ) ) echo esc_attr( $term_meta['fp5-select-splash'] ); ?>" />
    			<p class="description"><?php _e( 'Background image for playlist', 'flowplayer5' ); ?></p>
    		</div>

    And then this at 168:

    <tr class="form-field fp5-select-splash">
    			<th scope="row" valign="top"><label for="term_meta[fp5-select-splash]"><?php _e( 'Select a splash image', 'flowplayer5' ); ?></label></th>
    			<td>
    				<input class="media-url" type="text" name="term_meta[fp5-select-splash]" id="term_meta[fp5-select-splash]" value="<?php if ( isset ( $term_meta['fp5-select-splash'] ) ) echo esc_attr( $term_meta['fp5-select-splash'] ); ?>" />
    				<p class="description"><?php _e( 'Select a splash image for this playlist', 'flowplayer5' ); ?></p>
    			</td>
    
    		</tr>

    Plugin Author Ulrich

    (@grapplerulrich)

    Do you have a page where you have set a splash image for the playlist? I would like to rewrite the playlist system as there is a new developer feature in WP 4.4 that I would like to make use of.

    Thread Starter Platoscave

    (@platoscave)

    Thread Starter Platoscave

    (@platoscave)

    I think it would be awesome to redo the playlist setup. Currently the out of the box version is very limited. I will await your work eagerly.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Option to add splash images to playlists in latest plugin version?’ is closed to new replies.