anielsen
Forum Replies Created
-
Forum: Plugins
In reply to: [Whisper Comment Reloaded] Great functionality! Out of date plugin :-(2own, I haven’t found a suitable replacement and actually resorted to hacking the code for this plugin to get it to work with current WordPress standards.
Good luck and let me know if you find a replacement.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Playlist Changes Not UpdatingAs a temporary fix I used the JavaScript code listed here on all my pages that use this plugin: https://www.ads-software.com/support/topic/clicking-on-thumbnails-does-not-update-player
Hopefully the developer releases a more permanent fix.
Forum: Plugins
In reply to: [Contact Form 7] Move the uploaded file instead of deleting it?Sorry, I guess that seems counter intuitive to me, like it is forcing thread duplication.
In any case, I’ve started my own thread. Feel free to delete my posts from this thread.
Forum: Plugins
In reply to: [Contact Form 7] Move the uploaded file instead of deleting it?I was +1’ing this request hoping that the more eyes that see it the more likely it would be to get a response. Isn’t that better than flooding the forums with post after post all asking the same thing?
Forum: Plugins
In reply to: [Contact Form 7] Move the uploaded file instead of deleting it?I’m in a similar boat, I’d like to keep the uploaded files (I don’t really care about moving them from their temporary directory, but that is fine too) as I’m hoping to use this plugin to gather images from users and then use another process to SFTP into my server, retrieve the files and analyze them.
Forum: Plugins
In reply to: [J Shortcodes] Height of Accordian PanesI ended up editing line 34 of jay.js to replace:
autoHeight: false
with
heightStyle: "content"
and things work much better.Forum: Plugins
In reply to: [J Shortcodes] Height of Accordian PanesThe code Mirjana_Mima provided works but it messes up the jQuery transition. The accordion no longer slides open, it “jumps” open.
Anyone else seeing this? Any ideas on how to correct that?
Forum: Themes and Templates
In reply to: [P2] Full width Page layoutI ended up putting this at the top of my Page and it worked:
<style> #sidebar {width:0;height:0} #main {width:950px} </style>
Forum: Plugins
In reply to: [Tippy] Disable original tooltip?Awesome, thanks! That was exactly what I was looking for!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Searching DraftsThanks for the reply, but I’m not sure I understand. Can I use this plugin to search for Posts with a status of Draft when I’m not in the Dashboard?
I know this post is 9 months old but can I ask what you did to resolve this issue?
I am finding that users with the default role of Editor can’t see/use the TinyMCE Advanced toolbars. So far the only work-around I’ve found is to make them Administrators (which I don’t want to do).
I may have partially solved my own issue. Line 305 of import-external-images.php has the following code:
preg_match( '/^http:\/\//' , $uri )
I changed it to:
`preg_match( ‘/^http/’ , $uri )’Now it includes HTTPS links, which as it turns out were what my full image hrefs started with.
However I am running into a few more issues:
1) This isn’t finding files that end with all caps (i.e. JPG)
2) It doesn’t seem to gracefully handle image URL’s with %20’s in them.Forum: Plugins
In reply to: [J Shortcodes] [Plugin: J Shortcodes] Hard coding to jQuery 1.4.4….why??I second this, 1.4.4 isn’t even close to being current.
Couldn’t you just use https://code.jquery.com/jquery.min.js so that it will always be the latest version of jQuery?
I too have been poking around in the files for this plugin trying get captions to work with the jQuery slideshow.
I haven’t gotten it yet but I will keep an eye on this thread to see if/when someone figures it out.
This issue has been bothering me for a while so I started digging into the code for this plugin. In the ‘shortcodes.php’ file all the shortcodes that accept the template attribute have code similar to this:
function show_imagebrowser( $atts ) { global $wpdb; extract(shortcode_atts(array( 'id' => 0, 'template' => '' ), $atts )); $out = nggShowImageBrowser($id, $template); return $out; }
The slideshow shortcode doesn’t have that attribute:
function show_slideshow( $atts ) { global $wpdb; extract(shortcode_atts(array( 'id' => 0, 'w' => '', 'h' => '' ), $atts )); if( !is_numeric($id) ) $id = $wpdb->get_var( $wpdb->prepare ("SELECT gid FROM $wpdb->nggallery WHERE name = '%s' ", $id) ); if( !empty( $id ) ) $out = nggShowSlideshow($id, $w, $h); else $out = __('[Gallery not found]','nggallery'); return $out; }
I don’t have a test environment to try adding the code in myself, can someone else try adding the code and see if that returns the template functionality to the slideshow? Or am I way off track here? (PHP is not my strong point)