Skip to content

Instantly share code, notes, and snippets.

@eteubert
Last active May 17, 2018 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eteubert/68c170f30a57e2b3b594f32e8ecdc1e3 to your computer and use it in GitHub Desktop.
Save eteubert/68c170f30a57e2b3b594f32e8ecdc1e3 to your computer and use it in GitHub Desktop.
Podlove Web Player 4 in Podlove Publisher: Hide Share Tab
<?php
add_filter('podlove_player4_config', function ($config) {
$config['visibleComponents'] = [
'tabInfo',
'tabChapters',
'tabDownload',
'tabAudio',
// 'tabShare',
'poster',
'showTitle',
'episodeTitle',
'subtitle',
'progressbar',
'controlSteppers',
'controlChapters'
];
return $config;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment