Question Regarding Use of Multiple Configuration Options
-
Hello,
I have a quick question for you…
I’m trying to use this below code in my functions.php file to set two configuration options. For some reason only the second option will work (volume). Perhaps there’s an error in the way I’m implementing this, but I’m not sure.
Here’s my code:
function fp5_video_config()
{
/* Hide the Tooltip (Hit ? for Help) */
$config = ‘tooltip: false,’;
/* Initial Volume Level */
$config = ‘volume: 0.5,’;
echo $config;
}add_action( ‘fp5_video_config’, ‘fp5_video_config’ );
I used to only use the tooltip option, but had the need to add in the volume now as well. The tooltip option used to work perfectly, until I went and added in the volume. Now the volume option works, but the tooltip won’t. Pretty frustrating…
Any idea what I’m doing wrong here?
~ Michael
- The topic ‘Question Regarding Use of Multiple Configuration Options’ is closed to new replies.