Eric Mann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP HTTP Error: Couldn't resolve hostLooking at your configuration, and reading your latest post about how cURL works via IP but not hostname, I’m at a total loss. I’d recommend posting your situation on either serverfault.com or superuser.com and seeing if a pro over there can help (then make sure you copy the solution over here for people who might need it as well).
The thing that bothers me the most is that this is an .edu site … some educational institutions have complex server setups that break WordPress very easily … I’m hoping you’re not in that boat, too.
Forum: Fixing WordPress
In reply to: WP HTTP Error: Couldn't resolve hostCan you create a phpinfo page and link that to this post so we can see what’s currently configured? Just create a page called phpinfo.php which contains the following line:
<?php phpinfo() ?>And upload it to your site via FTP. This will tell us a little about how your server is configured and whether or not cURL is enabled.
@madivad Which version of the plug-in are you using? Google has updated their API since the plug-in was released and their update is what caused the bug. This has been fixed in version 1.0.1.
Please see this other form post for more details and update your installed plug-in.
If you’re using version 1.0.1 already, please contact me ASAP eric [at] eamann [dot] com so we can debug …
Forum: Plugins
In reply to: Rotating Image Widget@jwillua At the moment, you can’t. The plugin pulls images from the WordPress database itself, not a particular folder on the server. We’re working on a new release that will allow you to specify folders or create new image galleries, but that’s still quite a ways out in the development path …
Forum: Plugins
In reply to: [Plugin: JS Banner Rotate] UpdateOK, I just published version 1.3.1 (I know, early) to the repository. This maintenance patch fixes the bad call to
jsb_add_foot()and also fixed a problem some users were having with the custom error reporting system. I’m still working on the next major release, though, which will add the ability to specify a link for each image (requested by @rocket-dash, among others).Feel free to contact me if you have any other issues. info[at]jumping-duck[dot]com
Forum: Plugins
In reply to: [Plugin: JS Banner Rotate] Update@drtanz – To disable the link, set it to “javascript:void();” and the user’s won’t go anywhere. At the moment, there’s no way to actually turn off the linking feature.
@drtanz – The jsb_add_foot problem is an issue with some legacy code that I’ll fix ASAP.
@rocket-dash – You can’t link each image to a different page in this version. That’s scheduled for the next major release.
@duban – You’re not using JS Banner Rotate, you’re using a plugin called Banner Rotator FX … Since that’s not my plug-in, I can’t really help (though you’re probably using the wrong settings to start it up). Try contacting the developer directly.
@shinming – Please see my response to drtanz … I’ll have a patch available by the end of the week.
@neilpet – No problem 🙂
Forum: Plugins
In reply to: [Plugin: JS Banner Rotate] UpdateI have to apologize for the lack of documentation on the PHP function for the plug-in. Not many people were using it and somehow the actual documentation was overlooked. To call the function with multiple arguments, place a & character between each argument:
<?php jsbrotate('width=666&height=300&imgdisp=4&imgfade=2&images=image1|image2'); ?>The function basically runs the parameter string through the default shortcode function manually, so it should have the same behavior as when used inline in a post.
Thanks for the catch on the CSS typo. That shouldn’t really affect anything, but I’ll fix it in the next version.
@readme123456 Can you send me the link to your site so I can see how the images are overlaying on one another? I haven’t come across this problem on any other installation and it worries me.
Forum: Plugins
In reply to: Rotating Image Widget@liliyana – An early version of the widget is already available. It’s as simple as possible (unfortunately) and allows for 1 of your 3 requests:
2) You can specify the height and width of the images
Right now, the widget pulls a certain number of images at random from your WordPress image gallery (you can specify the number of images). The next version will allow you to pick the image source and will allow you to change the fade time.
Try it and let me know what you think: http://wordpress.org/extend/plugins/rotating-image-widget/
Forum: Plugins
In reply to: [Plugin: JS Banner Rotate] Update@dcimarkh – I just checked your site in Chrome, Firefox, and IE and I don’t see any problems with the nav dropdown. Have you already fixed the issue?
Forum: Plugins
In reply to: Plug ins wont show on side bar@thistleridge To be perfectly honest, I can’t figure out what’s going on behind the scenes without actually looking at it … send me an email at eric [at] eamann [dot] com so we can talk offline.
Forum: Plugins
In reply to: Which plugin has been used?It doesn’t look like a plug-in at all but like custom code they built into the root of their website. My recommendation is to contact the site owners directly and ask.
Forum: Themes and Templates
In reply to: Kubrick ghosts and stuff…It shows the flash of blue because the background color for the header element is set to blue. It will display blue there until the image loads.
To eliminate elements from the sidebar go to Appearance >> Widgets to drag and drop or edit what widgets display. You’re likely using the default set of sidebar widgets … but if you replace these with the widgets you want to use you can eliminate the meta box.
Forum: Plugins
In reply to: Plug ins wont show on side barNow that the plug-ins are installed, you need to actually add and position them in your sidebar. Go to Appearance >> Widgets to drag and drop different sidebar widgets into your sidebar.
Forum: Fixing WordPress
In reply to: Class not adding via loopThe problem I see is with how you’re using $counter. You start by defining $counter=0. Then immediately increment by 1 inside the loop. This should start you off with a class of “fl” for your first element … but you never reset the counter and keep incrementing by 1 in each loop. So, if you loop through 5 posts, $counter should be 1, 2, 3, 4, 5 and your class should be fl, fr, fr, fr, fr respectively.
I use a similar system on my site to alternate classes … here’s a snipped from my own loop (maybe it will help)
<?php $i=1; if (have_posts()) : while (have_posts()) : the_post(); $i++; $class = ($i&1) ? 'odd-' : 'even-'; ?> <div class="<?php echo $class; ?>olderpost"> <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <div class="content"> <?php the_excerpt(); ?> </div> </div><!-- /olderpost --> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: WordPress site loading very slowIn the future, I suggest using a tool like YSlow for Firefox to check on page loading. I took the liberty of running YSlow to see what was going on. Here’s a quick summary:
Performance Score: 65 (D)
To improve performance:
– Combine your 13 background images into an image sprite
– Combine your 3 external style sheets into 1
– Use Expires Headers on your static page elements (so they cache locally)
– Configure ETags
– Move Javascript to the footer rather than the header (defers loading and speeds up the page)