fwunder
Forum Replies Created
-
Forum: Plugins
In reply to: [Blue Hat CDN] Several IssuesI’m gonna try just one more time, because I don’t think you listened to my first reaction.
When I installed the plugin it created a menu item on my main (top) menu called “Joomla Cloud”. I have a carefully crafted top menu and header. That menu item not only destroyed my header layout, but created an unacceptable billboard linking back to you which I could not modify or remove.
I suggested before a footer link, “Optimized by…” would be acceptable, but do you really expect me to test the plugin with real world traffic with my layout completely destroyed?
I have used many plugins that simply specify the link may be removed upon payment. That’s reasonable and has often led me to purchase the “premium” version.
If you want to simply distribute a premium only plugin why not just put it on Code Canyon?
Thanks!
Forum: Plugins
In reply to: [Blue Hat CDN] Several Issuesbluehatnetwork,
I respect your quick responses and obvious passion for what appears to be well written software and probably well worth the price, but…
IMHO you are being a bit disingenuous. If you are an Amazon web services reseller, why not just say so? You obviously have a value added product. Please correct me if I am wrong, but isn’t the CDN network you are promoting as the Bluehat network cloud in fact the Amazon Network? At least that is where your own website content resides.
Perhaps I am being naive, but it is a bit troublesome. After all, if I signed up for your service I will be basically handing over my website content to you…or someone.
I think I will have to stick with CDN Sync Tool until you can resolve these issues.
Good luck.
Forum: Plugins
In reply to: [Blue Hat CDN] Several IssuesThanks for the quick reply, however…
When I installed the plugin it created a menu item named “Joomla Cloud” to my main menu. On your website it claims free version “Contains “Optimized By BHN” Text”.
I really don’t wish to have my main WordPress nav menu advertising and linking to “Joomla Cloud”.
Perhaps a footer link “Optimized By BHN” would be more appropriate for a “free version” and while testing?
I think you are doing a great job and this has great promise, but the menu modification is a bit much for testing prior to purchase, IMHO.
Thank you.
Forum: Plugins
In reply to: [SE HTML5 Album Audio Player] Got some conflicts happeningI have removed the player for the time being until I can work it out. Thanks.
Forum: Plugins
In reply to: [Magic Action Box] Magic Action Box in iFrameYes, that’s the idea. Wysija widget allows for simple copy of iframe widget code. I was wondering if you had considered the same.
Thanks!
I think I sorted it out. This seems to work fine:
$final = array(); foreach($pictures as $picture) { $aux = array(); $aux["price"] = nggcf_get_field($picture->pid, 'Price:'); (etc.)And
$out .= " <span class=\"price-overlay\"> " . "<h2>" . $picture["price"] . "</h2>" (etc.)Forum: Plugins
In reply to: [JJ NextGen JQuery Slider] [Plugin: JJ NextGen JQuery Slider] alt for images?Hello,
Since my sites rely heavily on the slider, it was important for me to add “alt” tags to images for SEO.
This is what I did:
line #217 jj-ngg-jquery-slider.php
$image_description = "title=\"" . $this->quote_fix($image_description) . "\" ";Change “title=\” to “alt=\”
in jquery.nivo.slider.pack search for line:
if(g.currentImage.attr("title")!=""){k=g.currentImage.attr("title");Change “title” to “alt”
This worked for me. Hope it helps!
P.S. This changes the “caption” from title to alt. Disabling caption ( disablecaptions=”1″ ) will disable the alt tag from being written.
I believe I found a much better solution than my thoughts above. It lies in a simple jquery plugin demonstrated here.
The idea is to preload a set number of images prior to the slider beginning, in this case three (3). Images are then “loaded on demand”.
A wonderful solution for large galleries. Now I just have to figure out how to plug it in to JJ NextGen JQuery Slider! 😉
Thanks
Replying to my own rambling thoughts…
Short code and div in post:
[jj-ngg-jquery-slider ... afterload="function(){$('#preloader').delay(800).fadeOut(500);}"] <div id="preloader"> <img src="./images/loader.jpg" /> </div>Then define div preloader in nivo-slider.css, something like:
#preloader { background:#000; position: absolute; z-index:500; width:675px; height:450px; margin-left: 160px; margin-top: -470px; } #preloader img { }This almost works. Actually, it does seem to work on one site, but not another. The positioning of the preloader above is a real kludge. Can’t figure out correct positioning for slider img holder.
The thought is to quickly load an image the same size and position as the slide show images load. Image will fade to first image in slide show when all images are loaded. Loader gif could still be used but, at least, the page would “appear” complete instead of a spinning icon.
Thanks for any input!!
redneony,
I think what what you are trying to accomplish is like:
http://spaceforaname.com/gallery-light.html
I would be interested in that also, as well as a “pause/play” option other than hovering.
I am trying to accomplish that here, using a modified Twenty-Ten theme:
http://jzerrer.com/zpress/rosemont-overview
This is a great plugin!
As has been pointed out to me by those much wiser…
The better solution is to use WordPress raw shortcode:
[raw][jj-ngg-jquery-slider title="Hello" gallery="1" html_id="about-slider" width="200" height="150" center="1"][/raw]Nice stuff!
A simple fix in my case was to add pre tags to the short code. This removed the unwanted line breaks and the slider works wunderfully.
Thanks Again!
If you are developing on a Mac, I would recommend Little Snapper
It’s great for cataloguing and printing websites.
Thanks JJ.
I’ll figure it out and post the solution. I’m thinking it may be as simple as a
display: block;in a css I just haven’t found yet.Just to follow up on my own post…
It appears that the theme I am working with is automagically adding linebreaks (
<br />) to the script generated image list. I think this may be the problem. I just can’t figure out (yet) how to tell the theme to stop doing that!Thanks