Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Sebas Bonito

Pages: 1 ... 9 10 11 12 [13] 14 15 16 17 ... 19
181
Templates & Styles (Releases & Support) / [MOD] reCAPTCHA
« on: July 10, 2009, 01:07:10 AM »
Localisation (e.g. in german)

Just add the following part somewhere in the template (like register_form.html) above the {recaptcha}

Code: [Select]
<script>
var RecaptchaOptions = {
   lang : 'de'
};
</script>

de is (of course) the part for the localisation. So Spanish-Users should change this to es and french to fr.

Further informations here.



I've also made a tiny snippet to recaptcha an e-mail address

182
Mods & Plugins (Releases & Support) / Re: [MOD] Last comments v1.2.0
« on: July 10, 2009, 12:13:52 AM »
Thanx for this mod... Just this tiny question:

I've already added this part:
Code: [Select]
 if (strlen($text) > $text_len)
  {
    $text = substr($text, 0, $text_len)."...";
  }

with this one below...

Code: [Select]
 if (strlen($row['image_name']) > 19)
  {
    $row['image_name'] = substr($row['image_name'], 0, 19)."...";
  }

With that, the image-title is not so long (in this case 19) and fits to the size of my thumb.

Update: I guess it's not the best version, but I've found a solution. Open thumbnail_bit.html in the template-order and replace {image_name} with
Code: [Select]
<?
    $shortname = "{image_name}";
  if (strlen($shortname) > 19)
  {
    $shortname = substr($shortname, 0, 19)."...";
  }
  echo $shortname;
?>
...to limit it to 19 signs.



But still need support with:

NOW I'd like to delete the <br /> which are included sometimes, if an user made a
"word wrap". But the following code doesn't work (Below line 77 in the index.php, where
$text = $row['comment_text']; is shown)

Code: [Select]
$text = str_replace("<br />","",$text);
Any ideas, what I made wrong?  :(



Something else: How to avoid double-posts? So that max. one thumb appears (in the home.html), when 2 or more comments are in one photo?

183
Mods & Plugins (Requests & Discussions) / Re: wordwrap and substr
« on: July 09, 2009, 02:20:07 AM »
For me the same  8O

I guess, I have to put something like this into the index.php and the categories.php to limit the title:

Quote
  if (strlen($row['image_name']) > 10)
  {
    $row['image_name'] = substr($row['image_name'], 0, 10)."...";
  }

But where?  :?:

184
Chit Chat / Re: KurtW MODs and Templates
« on: July 09, 2009, 12:15:12 AM »
derzeit gibt es keinen zugriff auf den PMv3. schauen wir mal ob es freigegeben wird.
Na das ist doch zum ersten Mal eine Aussage über den Stand der Dinge.

185
Chit Chat / Re: KurtW MODs and Templates
« on: July 08, 2009, 05:33:13 PM »
Aber mawenzi und andere Moderatoren verweisen in diesem Thread ja immer noch auf PMv3, obwohl man als normaler Benutzer keinen Zugriff darauf hat.

186
Chit Chat / Re: KurtW MODs and Templates
« on: July 08, 2009, 02:40:11 PM »
PMv2 lief doch auch nicht unter der 1.7.6 darum hat Kurt das doch neu geschrieben!
Und die Thread sind hier nicht zu finden, eventuell nur für Moderatoren !?
Ja, ist wohl nur für Moderatoren einsehbar, deswegen verweisen die auch immer auf den Link (weil sie den Thread ja sehen können), aber kein anderer. Ich frage mich nur, wieso? Denn PMv2 läuft unter 1.7.7 nicht... Leider! Und da hier ein so großer Bedarf vorhanden ist, weiß ich auch nicht, warum das nicht weiterentwickelt wird oder frei zu gänglich ist.  8O

187
Nobody an idea, why the copy into the big-folder doesn't work  :?:  :oops: [see post #415]

188
The thumbnail-Creater doesn't work with the [snippet] Square Thumbs / Quadratische Thumbs.
For every new video I have to delete the thumbs via ftp, and must use the [Plugin] Rebuild Thumbnails v1.1 to resize it to my square-size manually! How to add the Snippet to media stuff?

189
Thx, this works great, but NOT with the [MOD] Media sites v1.5.6.
For every new video I have to delete the thumbs via ftp, and must use the [Plugin] Rebuild Thumbnails v1.1 to resize it to my square-size manually!

190
Hi there,

I've searched many times, but couldn't get a similar result to my question,

how to show the number of pictures in the dropdown-list?
It's like in the categories... but here in the list after the (sub-)category.

Quote
Dropdown-List
-----------------
Category (100 pics)
Subcategory 1 (50 pics)
Subcategory 2 (30 pics)
Subcategory 3 (20 pics)

Is there a way to hande this?

Thx!
Sebas

191
Doesn't work on my site.
I'd like to the same... some categories should be shown, and some not.

192
I got it  :D

Find this part in the functions.php and the function get_categories
Code: [Select]
    $count++;
    $count2++;
    $categories .= "</td>\n";

After this add
Code: [Select]
if($count == 2) break; The number is how many cats will appear on the home.

There are two probs in this case... it works, BUT
1. not only on home, also IN the categories it will cut the subcategories
2. Only 2, 4, 6 etc. are possible (no even counts)

193
Chit Chat / Re: KurtW MODs and Templates
« on: July 07, 2009, 02:15:17 AM »
Wenn ich
aufrufe, erscheint die Fehlermeldung:
Quote
Das Thema dass Sie anschauen möchten, existiert nicht oder ist für Sie nicht einsehbar.

Wieso ist der Thread auf dem Abstellgleis?  8O

194
Chit Chat / Re: KurtW MODs and Templates
« on: July 07, 2009, 01:02:04 AM »
... die überarbeitete PM-Version 3.0 von KurtW für 4images 1.7.6 ist doch noch hier im Forum zu finden ...
... und so viel wie ich gesehen habe, ist das Zip-Paket incl. der pm_install_v3.php auch noch vorhanden ...
... diese Version sollte genauso auch unter 4images 1.7.7 laufen ...
Der Link ist immer noch tod...  :oops:

195
Please, is there nobody who can update the mod for 1.7.7? There are many (incl. me) who have probs with the script...

Pages: 1 ... 9 10 11 12 [13] 14 15 16 17 ... 19