demon_firefox
Forum Replies Created
-
Would you mind sharing the link to your website? ??
I guess that a JavaScript inline comment is causing this error. W3 Total Cache (and other tools to minify the source code) removes all line breaks which results in one big “disabled” JavaScript call.
You might try to directly edit the source code of the FooBox plugin to solve this issue, however each update of the plugin will reverse this fix!
Open “foobox-image-lightbox/includes/class-script-generator.php” and goto line 172. Replace
$preload = ' //preload the foobox font
with
$preload = ' /*preload the foobox font*/
Hope that helps.
Kind regards,
demon_firefoxPlease ensure that NGG is still activated and/or try to deactivate and then reactive it before starting the import progress.
In addition, you should try to import just a bunch of galleries at once.
Forum: Plugins
In reply to: [Shadowbox JS] Shadowbox JS is broken in WP 3.3 RC1According to your source code you still use: v3.0.3.8 ??
<!-- Begin Shadowbox JS v3.0.3.8 -->
Try to download the plugin from the plugin repository: https://www.ads-software.com/extend/plugins/shadowbox-js/
Forum: Plugins
In reply to: [Shadowbox JS] Shadowbox JS is broken in WP 3.3 RC1Thanks a lot!
Forum: Hacks
In reply to: How to use WP_Terms_List_Table in pluginI finally found a solution:
if(!class_exists('WP_Terms_List_Table')){ require_once( ABSPATH . 'wp-admin/includes/class-wp-terms-list-table.php' ); } <strong>set_current_screen( 'edit-<em>your_taxonomy</em>' );</strong> $terms = new WP_Terms_List_Table(); $terms->display();
The most important thing is to set the proper screen.
You also need to add &taxonomy=your_taxonomy to the page adress.
I’m actually dealing with the same question. Is there any way to activate ImageMagick on WP3 Network?