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 - Loda

Pages: 1 ... 18 19 20 21 [22] 23 24 25 26
316
@Loda:

Would it also be possible to see a screenshot of this MOD ? :)
yes!

317
ohh.. sorry..
i add the step 7 in the first post!  :wink:

318
hallo!
i've insert the idea of Stoleti ...

319
hallo!
zuerst ging bei mir auch nix.. bitte nehme den untersten eintrag des show_table_footer();, bei mir ging es danach.
in der Kategorien-Einstellung im ACP muss es auf "manuell" stehen.

320
Hi,
@the oracle: doppelposting, uuups..
it doesn't work with your changes. and so i was a little bit confused.. sorry!

321
hallo!
you are right! I've updated the codes! thank you!

322
hi,
here is a little addon for the acp.

1.  :arrow: add a new field in your database in the table 4images_users called user_notice, VARCHAR 255, notnull

2.  :arrow: insert in the db_field_definitions.php:
Code: [Select]
// User's notice
$additional_user_fields['user_notice'] = array($lang['user_notice'], "textarea", 0);

3.  :arrow: insert in your lang/admin.php:
Code: [Select]
$lang['field_user_notice'] = "Notiz";
4. insert in your lang/main.php:
Code: [Select]
$lang['user_notice'] = "Notiz:";
5.  :arrow: in your page_header.php find this:
Code: [Select]
  "charset" => $lang['charset'],and add after it this:
Code: [Select]
  "lang_user_notice" => $lang['user_notice'],
6.1  :arrow: in the admin/user.php find this:
Code: [Select]
  show_form_header("users.php", "removeuser", "form");
  echo "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" align=\"center\"><tr><td class=\"tableborder\">\n<table cellpadding=\"3\" cellspacing=\"1\" border=\"0\" width=\"100%\">\n";
  if ($countusers['users'] > 0) {
    $sql = "SELECT ".get_user_table_field("", "user_id").get_user_table_field(", ", "user_name").get_user_table_field(", ", "user_email").get_user_table_field(", ", "user_joindate").get_user_table_field(", ", "user_lastaction")."
and replace it with tis:
Code: [Select]
  show_form_header("users.php", "removeuser", "form");
  echo "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" align=\"center\"><tr><td class=\"tableborder\">\n<table cellpadding=\"3\" cellspacing=\"1\" border=\"0\" width=\"100%\">\n";
  if ($countusers['users'] > 0) {
    $sql = "SELECT ".get_user_table_field("", "user_id").get_user_table_field(", ", "user_name").get_user_table_field(", ", "user_email").get_user_table_field(", ", "user_joindate").get_user_table_field(", ", "user_lastaction").", user_notice

6.2  :arrow: then in the same file find this:
Code: [Select]
    echo "<td class=\"tableseparator\">".$lang['field_username']."</td>\n<td class=\"tableseparator\">".$lang['field_email']."</td>\n<td class=\"tableseparator\">".$lang['field_joindate']."</td>\n<td class=\"tableseparator\">".$lang['field_lastaction']."</td>\n<td class=\"tableseparator\">".$lang['options']."</td>\n</tr>\n";
and replace it with this:
Code: [Select]
    echo "<td class=\"tableseparator\">".$lang['field_username']."</td>\n<td class=\"tableseparator\">".$lang['field_email']."</td>\n<td class=\"tableseparator\">".$lang['field_joindate']."</td>\n<td class=\"tableseparator\">".$lang['field_lastaction']."</td>\n<td class=\"tableseparator\">".$lang['field_user_notice']."</td>\n<td class=\"tableseparator\">".$lang['options']."</td>\n</tr>\n";
6.3  :arrow: in the same file find this:
Code: [Select]
  echo "<td>".format_date($config['date_format']." ".$config['time_format'], $user_row[$user_table_fields['user_lastaction']])."</td>\n";
and add after it this:
Code: [Select]
echo "<td>".$user_row['user_notice']."</td>\n";     

ready!
then you can go to your acp and modify/edit any user. you can see a new field called "Notiz" . here you can write any thing in the field. for example: " userxy is my best friend or pay me 50dollars for my site etc."  :wink:
if you search in acp users you can see the new field with your notice.

sorry about my bad english..


a little modification:
if you want to show the notice to a user in his profile anywhere you want:
7.  :arrow: insert in templates/your_template/member_editprofil.html:
Code: [Select]
{if user_notice} {lang_user_notice} {user_notice} {endif user_notice}if you want to show it in the users profil insert the same code in the templates/your_template/member_profil.html ! but remember then all users can see the notiz. thanks to Stoleti for the idea.


323
Mods & Plugins (Releases & Support) / Re: [Mod] New Images in Category v2
« on: January 16, 2006, 03:12:03 PM »
hallo!
ich hätte da auch einen wunsch:
ich möchte gerne ein kategorie-image angezeigt bekommen. hat jemand eine idee für mich?

324
hallo!
nice mod, thank you very much!

325
Installation, Update & Configuration / Re: Komischer Fehler
« on: December 30, 2005, 10:37:14 PM »
hallo!
du solltest mal was unternehmen, denn ich komme bei dir ins ACP mit dem von dir angegebenen link!
http://www.4homepages.de/forum/index.php?topic=8288

327
hallo and merry christmas!
i found this:
http://www.rjk-hosting.co.uk/programs/prog.php?id=4
in the www
i don't know how to include this file.

328
Discussion & Troubleshooting / Re: remove headline from comments
« on: December 24, 2005, 08:18:22 PM »
in detail.php i think you can delete:
Code: [Select]
    if ($comment_headline == "")  {
      $msg .= (($msg != "") ? "<br />" : "").$lang['headline_required'];
      $error = 1;
    }
then you don't get an error message.
or set error = 0

329
Mods & Plugins (Requests & Discussions) / Re: need help with shop mod
« on: December 21, 2005, 10:51:01 AM »
hmm. i think it 's not possible..
a little trick: upload the same the picture with other name, then you have two pictures.. and you can enter for each picture a different price.

330
Mods & Plugins (Requests & Discussions) / Re: Profil erweitern
« on: December 20, 2005, 10:22:04 AM »
hallo!
sorry.. das habe ich wohl überlesen..  :(
nächstes mal schaue mir das gründlicher an..
danke dir!

Pages: 1 ... 18 19 20 21 [22] 23 24 25 26