istarnet
Forum Replies Created
-
Forum: Reviews
In reply to: [qTranslate Plus] Perfect as guest language switcherSorry. Should have wrapped my code in tags. The link ought to look like:
<a href="/?lang=cn">chinese</a>Forum: Plugins
In reply to: [Post type archive in menu] CSS classes not assigned correctlyFalsely accused! The plugin is perfect. My theme is overwriting classes on menu items. I have no idea why but the theme has a low priority filter that totally replaces classes on menu items. I had written a high priority filter to work around the problem but my workaround was being overwritten. I highly recommend this plugin. It solves my needs perfectly.
Forum: Plugins
In reply to: [Post type archive in menu] CSS classes not assigned correctlyI am quite confused at this point. I still cannot assign custom classes but I don’t know why. I’ve deactivated this and other plugins but the problem remains. I think my database might be corrupted. More if is get a clue.
My sending problem stemmed from the fact that only a few emails went out with each batch. Frequently (and maybe usually), a new batch would fire off while the first batch was still sending. This caused slow progress and multiple sends. I’m not sure why a had this problem but I decided to migrate my clients to a different newsletter package that cost a bit of cash but seems to have more resources for support.
I tip my hat to eventualo for taking on this complex solution.
I increased the maximum per batch because it took a really long time to send the 1st of the two newsletters. I will crank this setting down and run debug as you suggest. I still think it is odd that so many worked with no problem except for one small batch about halfway through.
Thanks for your suggestion…
I updated the version of EasyMail and then tested. Yes, the activation link seems to work. But I have to check my settings because I am seeing:
Dear unikey,as the salutation in the confirmation email. I looked on the Texts tab and see that the value I’m using is
Dear %NAME%so perhaps I have an improper setting. No time now to investigate but I’ll look into this tomorrow.
Thanks!
@sam, thanks for posting your fix. @jack, I have also abandoned this plugin. I found some display problems on (I think) IE7 and just threw up my hands. My new strategy is to use NextGen for sites that require major images gallery display but fall back to Media Library for sites with posts containing slideshows. With the Media Library I attach slideshow images and use Portofino gallery. This doesn’t allow multiple slideshows within a single post but it does allow the multi-post page to contain a number of posts, each containing a single slideshow.
Forum: Plugins
In reply to: [WordPress NextGen GalleryView] ie8 bug with overlay textI believe that I can accurately describe the problem with overlay text. The transition for captions is working correctly in IE8 but the transition for images is not. When the transition begins, the current caption begins to fade as the next caption begins to emerge. However, the next image snaps into place instantly, regardless of the duration set for the transition. The result is that both captions display over the next image. If you wait until the transition completes, the jumble resolves.
I am viewing this in IE9 using IE8 and IE7 Standards mode. IE8 is the only browser that displays this problem. It may be possible to work around this with the correct choice of settings but I haven’t tried.
Forum: Plugins
In reply to: [WordPress NextGen GalleryView] ie8 bug with overlay textI just discovered that I have the same problem. I might use conditional CSS to hide overlays for IE8. Other than that, I have no suggestions at this time.
I am pretty sure that the javascript has only one big problem. The storage for slideshow options (that ought to be local) is global. The effect is that the last call sets the options for all galleries on the page.
In your case, the first gallery has four images. It could have a gazillion or more. The second gallery has three images. Thus, all slideshows are configured to display only three thumbnails. Last in rules.
I’m not going to debug this because my client is satisfied with the current function. Good luck though. If you fix, post it!
sammond7, I looked into the plugin a bit. The shortcode is working properly to pass the correct values to each instance of the slideshow. The problems lie in the javascript code. Do you have a page showing the messed up thumbnails?
I’m just starting to explore this. Some variables seem to have global scope when they should be local. For example, if you create a 600×400 slideshow and, beneath it, create a 400×600 one, then both slideshows will take on 400×600.
This is a big problem on the front page where different posts may have slideshows with different aspect ratios. My workaround is to use GalleryView only for landscape-mode slideshows…
This is a javascript plugin that runs in the browser. You should create a gallery with images that are sized properly for the galleryview display. This will also improve your page load speed.
Forum: Installing WordPress
In reply to: WordPress w/ Plesk: blank screen without wwwSimple fix for Network admin. I wrongly stated the value of DOMAIN-CURRENT_SITE in the network configuration in wp_config.php. It should be:
define( 'DOMAIN_CURRENT_SITE', 'www.mydomain.com' );Now my only remaining problems is getting the URL without www to redirect to the domain including www.
When exploring fixes for this issue, I noticed that the animation restarted upon mousing over and out of the gallery. I tried to find a suitable object on the page to simulate a .mouseout but I couldn’t find one. Eventually I found this hacky workaround.
I added the following to the .focus event:
$('.nav-next').click();So the entire fix inserted around line 1000 is:
// Stop the animation when losing focus $(window).blur( function () { $(document).stopTime("transition"); } ); // Restart the animation by simulating a click $(window).focus( function () { $('.nav-next').click(); });No guarantees because, like others here, I am not a jQuery programmer!