ZeroGravity
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Posts Slider] [Plugin: Recent Posts Slider] Images Not ShowingSame Deal here. It is the only plug-in activated and still no images showing.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Small Captcha position, and message area problemI can confirm that it works with “Enable smaller size CAPTCHA image” unselected. I will leave it unselected until tomorrow in case you would like to run some tests.
Darren
Forum: Plugins
In reply to: [Fast Secure Contact Form] Small Captcha position, and message area problemHi Mike,
Thanks for your quick reply. I am one of those users who like to have the labels on the left. π I did get a fix working but it involved changing the si_contact_get_captcha_html function.
The first div I change to
<div '.$this->ctf_title_style.'>Β </div>. I removed the corresponding closing div from further down the function. This has the blank captcha label working the same way as all the other labels. I then changed the small Captcha div CSS setting tofloat:left; width:362px; height:40px; padding-top:10px;I set the width that high to push the captcha field down to the “next line,” another IE quirk.I ran it through Browser labs and it looks ok in all the browsers there (within reason). Can you think of any problems that may result from the changes I have made?
Thanks
Darren Burns
[sig moderated as per the Forum Rules]Forum: Plugins
In reply to: [Fast Secure Contact Form] Small Captcha position, and message area problemHi Mike,
I am having the same issue with IE7 (*$#&@#$) http://www.olseninsurance.com/contact-us. I followed the post you linked to above but am not sure if I made the changes correctly. I added “margin-top: 60px\9;” to the captcha field CSS. This fixed it for IE7 but broke it for IE8 and IE9.
The captcha field was displaying beside the message textarea. I increased the captcha field width to 75px and it now displays over the captcha image. It seems to be happening as a result of the captcha images being nested inside the blank label.
Do you have any other suggestions or a correction for the margin I tried to add. Many Thanks.
(Using Genesis with Agency child theme)Forum: Hacks
In reply to: single_sidebox and wordpress widgets@katdidit, Did you ever get this working? I am about to try using Sidebox Anywhere with a Genesis Theme and was wondering if you had any tips before I get started.
Forum: Plugins
In reply to: [Stray Random Quotes] Change contributoeOops. I should have checked the spelling of the title before I posted.
This is an option I would also love to see.
Forum: Plugins
In reply to: [Recent Posts Slider] Thumbnail not showing plugin conflict.I just upgraded wordpress to 3.1.2 and deactivated every plugin I have loaded and the slider still doesn’t show any thumbnails. This site is hosted with Godaddy (dev.trustedlendingadvisors.com) and the test site where it works is on my own hosting.
Has anyone had issues with Godaddy?
I found and fixed the problem. At line 859 I replaced
if( !empty($post_details[$p]['post_first_img']['0']) || !empty($post_details[$p]['post_excerpt'])){ $rps_img_src_path = $upload_dir['baseurl'].$post_details[$p]['post_first_img']['0']; $output .= '<a href="'.$post_details[$p]['post_permalink'].'"><img src="'.$rps_img_src_path.'" align="left" /></a>'; $output .= $post_details[$p]['post_excerpt']; }with
if( !empty($post_details[$p]['post_first_img']['0'])){ $rps_img_src_path = $upload_dir['baseurl'].$post_details[$p]['post_first_img']['0']; $output .= '<a href="'.$post_details[$p]['post_permalink'].'"><img src="'.$rps_img_src_path.'" align="left" /></a>'; } if (!empty($post_details[$p]['post_excerpt'])) { $output .= $post_details[$p]['post_excerpt']; }Forum: Fixing WordPress
In reply to: Can't change WordPress address (URL)SOLVED!!!
Not content for a work around I went digging. I also don’t have WP_SITEURL or WP_HOME set in my wp-config.php. I guessed it might have been a plugin and sure enough, Bingo!!!
I use stray random quotes to put testimonials on a site (love this plugin). The way it works it needs to disable changing the address URL otherwise it would break. I haven’t checked the documentation fully to see if it is mentioned. I disabled the plugin, moved the site, then activated the plugin again. All the settings and quotes were still there.
I hope this helps, there may be other plugins that do the same. Hopefully authors will start prominently documenting this to save some heartache.
Thanks Mike,
I had the feeling that would be the case but wanted to check just in case there was a hidden feature somewhere. π