attosoft
Forum Replies Created
-
Forum: Plugins
In reply to: Page header floating over thickbox windowThis problem is caused by CSS z-index written in style.css of Twenty Eleven theme.
Twenty Eleven header has 9999 z-index in
wp-content/themes/twentyeleven/style.css.#branding { z-index: 9999; }But original ThickBox window has about 100 z-index in
wp-includes/js/thickbox/thickbox.css.#TB_overlay { z-index:100; } #TB_window { z-index: 102; } #TB_load{ z-index:103; } #TB_HideSelect{ z-index:99; }Therefore Twenty Eleven header covers (hides) ThickBox window. The solution is either to decrease z-index in style.css, or to increase z-index in thickbox.css. And I adopted the latter one (multiplied all z-index by 100).
Forum: Plugins
In reply to: How to make Auto Thickbox Plus show the caption instead of title in galleryI intend to add Caption option. You will be able to switch the caption to gallery caption easily in next release.
I released version 1.3. Now you can specify what to display in caption through “Text – Caption” option.
I intend to take a different approach and remove getimagesize() function call, so the issue will be solved soon.
I released version 1.3 witch contains the improved code about “Loading” image option.
The issue is caused by the code using
getimagesize()function. But the code exists from version 0.8, and I did not change it in version 1.2. So I guess your server setting has been changed without noticing by server administrator.Anyway, I intend to take a different approach and remove
getimagesize()function call, so the issue will be solved soon.Forum: Plugins
In reply to: [Auto ThickBox Plus] [Plugin: Auto ThickBox Plus] Some Boxes won't closeAll you do is either of the two solutions. So you do not need to modify original
thickbox.csssince you unchecked “Use WordPress built-in thickbox.js/css” option.where I can find /wp-includes/js/thickbox/thickbox.css?
Original
thickbox.cssis included not Auto ThickBox Plus but WordPress. In your site, it is located athttp://www.fotoquarelle.de/wp-includes/js/thickbox/thickbox.css.Do I have to change it via FTP?
Yes, but you do not need to change it in this problem.
As above messages say, URL file-access is disabled in your server configuration. That is
allow_url_fopen = Offinphp.inion your server. (default is On)This issue is caused by changing loading image option under the condition of
allow_url_fopen = Off.If
www.mydomainname.xxis internal domain, please use default loading image until I fix the issue. But if it is external domain, you need to setallow_url_fopen = On.Forum: Plugins
In reply to: [Auto ThickBox Plus] [Plugin: Auto ThickBox Plus] Some Boxes won't closeHi albumcheck,
Thanks for using Auto ThickBox Plus.
I checked your site. You use original ThickBox resources (built-in thidkbox.js/css), don’t you? Original thickbox.css has a bug about CSS z-index.
In your site, black shadow header/footer covers (hides) ThickBox window. So in large image such as “Rheinische Post”, ThickBox cannot be closed by clicking top/bottom side of the image including close button.
There are two solutions.
- Change Auto ThickBox Plus option
- Uncheck [General] – [ThickBox Resources] – [Use WordPress built-in thickbox.js/css] option
- Modify original thickbox.css
- Open
/wp-includes/js/thickbox/thickbox.css, and change four z-index values to bigger number than 999 (means header/footer z-index). I recommend to multiply the number by 100.
Sorry, my english is not so good.
Don’t mind. Me too.
Forum: Plugins
In reply to: Page header floating over thickbox windowOh, I also have missed this topic.
I added “auto-thickbox-plus” tag to this topic.Thank you for reporting the problem to me.
This problem caused by TwentyEleven theme CSS.
As you may know, I fixed it at version 0.5 about six weeks ago.Forum: Plugins
In reply to: How to make Auto Thickbox Plus show the caption instead of title in galleryAuto ThickBox Plus does not have such feature yet.
After I posted the comment above, I changed my mind. I intend to add Caption option. You will be able to switch the caption to gallery caption easily in next release.
Forum: Plugins
In reply to: using thickbox with nextgengalleryIf you want to show images as gallery images, you can write the code like below.
< a href="image1.png" class="thickbox" rel="gallery-id-foo"> <img src="image1_s.png" alt="image1" /> < /a> < a href="image2.png" class="thickbox" rel="gallery-id-foo"> <img src="image2_s.png" alt="image2" /> < /a>I’m not sure about WordPress ThickBox plugin. I think this plugin only loads thickbox.js and thickbox.css.
When you use NextGEN Gallery with ThickBox, it loads thickbox.js and thickbox.css automatically. So ThickBox plugin seems unnecessary in this case.
Hi hunnsdon,
Does the iframe have the scroll bar?
When an iframe has vertical scroll bar, the bottom right corner seems not be rounded.
And when an iframe has horizontal scroll bar, the bottom left corner seems not be rounded.
I think this is not a bug.Then the top left and top right corners are not rounded in the version a few days ago.
Please reinstall (remove and install) the latest version that I fixed yesterday.If the iframe has no scroll bar and you use the latest version updated yesterday,
there may be problems in this plugin or your blog.You are talking about top left and top right border radius of title bar?
If so, I fixed the issue a while ago. Please try (reinstall) the latest version.That’s good but I have no idea the difference between my and your code.
placeValuesBeforeTB_=savedValuesis just sample parameter. It does not make sense.<a href=""></a>is converted and linked automatically. So I wrote< a href="">< /a>instead.
Forum: Plugins
In reply to: Thickbox doesn't work with W3 Total CacheOh, I’m sorry. I updated thickbox.js but forgot to update thickbox.min.js.
Please retry (delete and install) latest version.Forum: Plugins
In reply to: How to make Auto Thickbox Plus show the caption instead of title in galleryHi angusv,
I’m the author of Auto ThickBox Plus. I have missed this topic until now.
Why didn’t you post the topic into auto-thickbox-plus forum?Is there any simple way to have Thickbox show the caption instead of the title when I view a gallery picture?
Auto ThickBox Plus does not have such feature yet. I think the simple way is modifying thickbox.js. You can see the code below in
tb_click()function.var t = this.title || this.name || null;
Please try to modify the above code like below.
var t = jQuery(this).parent().next('.gallery-caption').text() || this.title || this.name || null;Then gallery caption is used if it exists instead of
a@titleorimg@alt.