1 (edited by charmedlife 2014-05-26 15:34:52)

Topic: Remove image title from caption using wordpress plugin [SOLVED]

I have looked and looked and, I think, tried every single caption option, but I can not seem to find how to turn off the image name (e.g., DSC012457.jpg) as the caption, and still keep the numbering system "15/265" at the bottom right.

I see that it is an option in the builder, but can I do this with the wordpress plugin?

I am using picasa galleries.

http://gateslosangeles.com/gates-and-fe … gates.html

Re: Remove image title from caption using wordpress plugin [SOLVED]

When using a Picasa Web Album as the source of image, WP-Juicebox uses the Picasa image 'title' as the Juicebox image title (which by default is the image filename) and the Picasa image 'summary' as the Juicebox image caption.

If you want to prevent WP-Juicebox from displaying the Picasa image 'title', please do the following.
(1) Open the 'wp-juicebox/config.php' file in a plain text editor.
(2) Change line 101 from:

$title_text = $dom_doc->createCDATASection($attachment->title);

... to:

$title_text = $dom_doc->createCDATASection('');

Please note that the line number above refers to the current version of WP-Juicebox (v1.4.0.1).

Re: Remove image title from caption using wordpress plugin [SOLVED]

Ok, that worked fine. Please note that the file name is extension .php and not .xml. Thanks very much for your assistance in this.

Re: Remove image title from caption using wordpress plugin [SOLVED]

Sorry about that. I am glad that you were able to find the correct file to modify.
I have now corrected my post above.