stanbdb
Forum Replies Created
-
Forum: Plugins
In reply to: [FLV Embed] [Plugin: FLV Embed] do_shortcode PHP not working properlyHi, i believe i found a workaround. Instead of using
<?php echo do_shortcode( '[flv:/wp-content/uploads/2012/03/header.flv 720 480]' ); ?>try using<?php echo flv_parse( '[flv:/wp-content/uploads/2012/03/header.flv 720 480]' ); ?>
flv_parse is a function defined in the plugin code. This solution has worked for me. This thread has led me to this solution.
Take care, StanForum: Plugins
In reply to: Removing of the watermark from JW Image Rotatormika, i had the same problems, and after a few hours found this link to and old version of the swf that didn’t have the watermark. just replace imagerotator.swf you have with this one. worked for me!
Forum: Plugins
In reply to: [Plugin: WP-dTree] Parent menu that just open their submenu?hi. you must go to settings > wp-dtree settings, in wp admin panel, and deselect “folders are links” under the trees you’re using. this is how you do it in version 3.5 of this plugin. take care, stan.
Forum: Plugins
In reply to: [Plugin WP-dTree] – exclude categories in PHPhttp://artdevivre.ehost.pl/?page_id=42
this is the website i’m working on. right now, the list displays all the categories of my website. on the page i sent, i only want a list of subcategories of ‘Kuchnia’. how can i do that?Forum: Plugins
In reply to: [Plugin WP-dTree] – exclude categories in PHPhi jaysonbrown, i have a similar problem. i am using the same code snippet as you. i would actually like to pass a parameter like “child_of=4” to
wp_dtree_get_categories();(similar to wp_list_categories tag). i examined the code of the plugin, and that doesn’t seem to be possible. i have to use multiple instances of category tree across the site, each one displaying subcategories of a given category. have you had any luck in finding a solution? that seems to be a good idea for a feature request to the author anyway.