John Hanusek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No sound in Youtube on Frontpagelooks like it set in the JS file here: Line 279
video.muted = 'muted';There is no filter or hook that I see that can override this.
This would require copying this file into your theme and commenting out that line then adding this to your functions.php
add_action( 'wp_enqueue_scripts', 'replace_scripts', 20 ); function replace_scripts(){ wp_dequeue_style( 'wp-custom-header' ); wp_enqueue_script( 'wp-custom-header', get_template_directory_uri() . '/my/version/of/wp-custom-header.js'); }- This reply was modified 9 years, 5 months ago by John Hanusek.
Forum: Fixing WordPress
In reply to: No sound in Youtube on FrontpageI am looking for this. What filter am I looking for. I can code.
Forum: Plugins
In reply to: [imPress] Invalid argumentI believe this issue is resolved in the new version.
Forum: Plugins
In reply to: [imPress] Critical ErrorThis bug is fixed in 0.1.4. Thanks for the feedback
Forum: Themes and Templates
In reply to: Theme templates don't work with symlinksI’m noticing the same issue. Looking into it a bit deeper.
Forum: Plugins
In reply to: [Plugin: NGG Video Extend] Set Video SizeIf you goto the Plugins section and click “Edit” for “NGG Video Extend” Plugin, then open the “ngg-video-extend/ngg-video-extend.js” file and change the dimension on these lines.
$(this).attr("rel", $(this).attr("rel") + ";width=480;height=390");There are four of them.
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] remove additional images from ThickboxYou need to remove the style sheet from either one of the plugins. I removed the one in WP eCommerce. I found it in the plugin directory here:
wp-e-commerce/wpsc-includes/theme.functions.php
comment out line 186 like this
/*wp_enqueue_style( 'wpsc-thickbox', WPSC_URL.'/js/thickbox.css', false, $version_identifier, 'all');*/