eswhite
Forum Replies Created
-
Forum: Plugins
In reply to: Wordcycle slideshow – exclude attached images?Have you tried the exclude option? It excludes an image by id.
Forum: Plugins
In reply to: WordCycle not seeming to attache jquery slideshow to galleryLooks like you got it working?
Forum: Plugins
In reply to: [Plugin: WordCycle] White border around imagesKevin — I’d check all of your other JS because the default styles for WordCycle add a background color #EFEFEF so I think your problems may be coming from somewhere else.
Also, simple rules like this would normally work:
.wordcycle .cycle-item img { border:none;}
.wordcycle .cycle-caption { background:transparent;}And — just to be sure, you could edit your copy of wordcycle.css to remove the styles that add background color/border.
Forum: Fixing WordPress
In reply to: remove_action problem when function is within classThis helped me out trying to remove an action from SyntaxHighlighter Evolved. Thank you!
Forum: Requests and Feedback
In reply to: Plugin README file isn’t workingThank you!
Forum: Requests and Feedback
In reply to: Plugin README file isn’t workingI made the most recent changes only a few hours ago — but I’ve been having this problem since I first added the plugin to the repository.
I’ve been working on a jQuery Cycle plugin for WordPress that uses a post’s gallery: WordCycle
Also still in beta, but a different approach to the same “problem.”Forum: Fixing WordPress
In reply to: Google Maps (iframe) deleted with TinyMCE and Advanced TinyMCEI was able to fix this (using TinyMCE Advanced too) by adding the following line to my functions.php file:
add_filter('tiny_mce_before_init', create_function( '$a', '$a["extended_valid_elements"] = "iframe[id|class|title|style|align|frameborder|height|longdesc|marginheight|marginwidth|name|scrolling|src|width]"; return $a;') );
Thanks to the suggestion above by @smilinghuman and this Nabble thread
Forum: Fixing WordPress
In reply to: current_page_parent is wrong?!@cdembinski thanks for the reply.
To clarify: I’m hiding/showing the sub-pages using JavaScript, and it works fine *most* of the time. It isn’t working on particular pages because for some reason the.current_page_parent
class is being applied incorrectly. I’m not sure how to troubleshoot this because it seems like a database error.Forum: Fixing WordPress
In reply to: current_page_parent is wrong?!Is nobody responding because I put this question in the wrong section or because you’re not sure what’s going on?
Thanks!