vuthy
Forum Replies Created
-
Forum: Plugins
In reply to: [NextGEN Public Uploader] No Email Notification is SentWith the plugin I mentioned above configured for my server, it works perfectly now. Thank you for this public uploader plugin—just what I needed!
Forum: Plugins
In reply to: [NextGEN Public Uploader] No Email Notification is SentOh duh. Should have been the first thing I checked!
I see that this new site is on a Lunarpages LPCP server with different mail configurations versus their standard cPanel.
I will need to use this plugin and then continue testing. Thanks!
Forum: Plugins
In reply to: Referrer Detector prevents Flickr Gallery lightbox from workingI had the same issue tonight with the Referrer Detector preventing my lightboxes from working. I looked up what wp_enqueue_script was and was able to make it work. Probably not the best way to do it but both plugins now work for me.
In RD’s plugin folder, edit rd.class.php. Around line 230 (within the head function), delete or comment out the following:
print('<script type="text/javascript" src="https://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script>');
So now instead of printing it directly into the header, we’re going to put what WordPress suggested here https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script#Load_a_default_WordPress_script_from_a_non-default_location in between our <head></head> tags:
<?php function my_init_method() { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'https://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js'); wp_enqueue_script( 'jquery' ); } add_action('init', 'my_init_method'); ?>
Works for me. Hope this helps!
Forum: Alpha/Beta/RC
In reply to: Add option to hide new Admin BarThanks olyma, that worked perfectly. Glad I’m not the only one that hated what is supposed to be a “good” feature.
Forum: Plugins
In reply to: Plugin: Twitpic ExpanderThanks, this is just what I’m looking for though for some reason, if a post has more than one twitpic link, only the last one gets its picture displayed. I’ll try to see if I can figure this out.
Thanks for the code!
Forum: Fixing WordPress
In reply to: Links list – target=”_blank”?I wanted to do the exact same thing (have the target value on the Add Link page default to _blank) so I Googled and came here. I noticed there was no answer, but it gave me a good starting point and I was able to make it work. First I tried moving the values for _blank from the 1st in the list to the last in the list, like sexinart did, but it didn’t work. Well, here’s my new code that works ONLY AFTER I went in and pretended to edit an existing link. I just clicked the Edit link for it, and re-saved it, and THEN my Add Link interface updated to default to _blank (no matter how many times I refreshed, or logged in and out, it didn’t take my changes until I did that pretend edit).
Here’s the code in edit-link-form.php
<td>
<label>
<input type="radio" name="link_target" value="" <?php echo($link->link_target == '') ?> /> <?php _e('none') ?>
</label>
<label>
<input type="radio" name="link_target" value="_top" <?php echo($link->link_target == '_top') ?> /> <code>_top</code>
</label>
<label>
<input type="radio" name="link_target" value="_blank" checked="checked" <?php echo($link->link_target == '_blank')?> /> <code>_blank</code>
</label>
<?php _e('(Note that the <code>target</code> attribute is illegal in XHTML 1.1 and 1.0 Strict.)') ?>
</td>Hope this helps someone!