Arnoud
Forum Replies Created
-
Forum: Plugins
In reply to: Looking for a plane spot plugin/hackI could write a post about each plane, but that would result in a lot of posts after a day of spotting. 😉
What I also would like to be able to, is to track how many times I’ve seen an aircraft and on which dates.
And of course reports per airline, plane type, location, etc.
Perferably also an intergration witn NextGen Gallery for photo’s of each aircraft (only one per aircraft).Don’t think that a post is very usefull for that, a page where this information is displayed on would be better in my opinion.
Hope it’s a bit more clear, if not let me know and I’ll see what I can clear up!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Increasing upload sizein a file called .htaccess
php_value upload_max_filesize 20MForum: Plugins
In reply to: [Plugin: NextGen Gallery] Feature Request EXIF ShowUpAs long as it’s an optional feature to be displayed I like this idea as well!
Forum: Fixing WordPress
In reply to: Need help with Next Gen Gallery!1) try uploading you pictures at a smaller resolution.
Or modify you .htaccess to include the following piece of code:php_value memory_limit 40M2)
Yes, I use the following code in my posts:
<table border="0"> <tbody> <tr> <td>[singlepic=561,180,120,,]</td> <td>[singlepic=562,180,120,,]</td> <td>[singlepic=563,180,120,,]</td> <td>[singlepic=564,180,120,,]</td> </tr> </tbody></table>The use of the table is optional, you can juse the
[singlepic=561,180,120,,]if you like.561 = image number
180,120 = thumbnailsize.Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Opening full size image in a new windowHave a look at the thickbox.js file, located in ..\wp-content\plugins\nggallery\thickbox\
The code used to generate the ‘popup’ window is in that file.
Make sure to backup your file before you change anything.Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] No exif data?Hi Alex,
Wil this:
“Please request the autor of XML Google maps for help. seems to be not an NextGEN issue (as long as you not resize the imeages wich NextGEN , because this process removes the Exif data, unfortunately …)”Be resolved in a later version?
Or perhaps will it be possible to add the required Exif data for Google Maps thourgh NextGen?Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Translating Gallery/Album Titlesnggfunctions.php:
Line 447 & 457:
.$gallerycontent->title.
Changed to:
.__($gallerycontent->title).that worked for me.
I hope you will include it into the next release, so I won’t have to update my nggfunctions.php file at that point. 🙂
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Translating Gallery/Album TitlesOr is there a good tutorial on how I can do this myself?
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Translating Gallery/Album TitlesAre there any plans to make them GETTEXT enabled?
Or even better, [lang] tag compatible?
(Just like with a blog/page title?)Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Translating Gallery/Album TitlesHmm… guess I need to be a bit more specific:
I would like the custom tiles/name of my galleries to be displayed in two languages. Either with a [lang] or through gettext.
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Translating Gallery/Album TitlesJust to be clear: I tried adding the names of my galleries to the .mo / .po file as well. Didn’t work.
Looks like the gettext tag for the gallery title’s is missing?Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Translating Gallery/Album TitlesYes I have. And as you can see in my post, the rest of the gallery is translated nicely. (Including the Admin Panel).
Only the names of my galleries aren’t translated.Forum: Fixing WordPress
In reply to: Previous/Next below posts/pagesMarvellous!
Thanks so much! 🙂 🙂
You just made my day!!!Forum: Fixing WordPress
In reply to: Previous/Next below posts/pagesThese lines of code are in my template in a file called “page.php”
Forum: Fixing WordPress
In reply to: Previous/Next below posts/pagesVolgende Pagina is Dutch, it’s translated automatically by gettext & a .mo file.
(See the language option on the right hand side of the site).Volgende Pagina means Next Page
Vorige Pagina means Previous PageCode that is currently generating the page navigation:
<?php
wp_link_pages(‘before=<div class=”next”>&after=</div>&next_or_number=next&previouspagelink=« Previous Page’);
wp_link_pages(‘before=<div class=”number”>&after=</div>&next_or_number=number’);
wp_link_pages(‘before=<div class=”next”>&after=</div>&next_or_number=next&nextpagelink=Next Page »’);
?>