Jump to content

Mailte

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

1,085 profile views

Mailte's Achievements

Newbie

Newbie (2/6)

4

Reputation

  1. Is there a way to add a download button in the compact ui?
  2. Hi @horst, thank you so much sir! Now its working perfectly
  3. Hi there, after installing the Wire Mail Module, i get a Fatal Error message when opening the settings page: Recoverable Fatal Error: Argument 1 passed to InputfieldWrapper::add() must be an instance of Inputfield, array given, called in /var/www/vhosts/mydomain.de/httpsdocs/site/modules/WireMailSmtp/WireMailSmtpConfig.php on line 60 and defined (line 162 of /var/www/vhosts/mydomain.de/httpsdocs/wire/core/InputfieldWrapper.php) This error message was shown because you are logged in as a Superuser. Error has been logged. I'm using ProcessWire 2.5.3. Can anyobody help me? Thanks! Recoverable Fatal Error: Argument 1 passed to InputfieldWrapper::add() must be an instance of Inputfield, array given, called in /var/www/vhosts/mydomain.de/httpsdocs/site/modules/WireMailSmtp/WireMailSmtpConfig.php on line 60 and defined (line 162 of /var/www/vhosts/mydomain.de/httpsdocs/wire/core/InputfieldWrapper.php) This error message was shown because you are logged in as a Superuser. Error has been logged.
  4. Okay, somehow there seems to be a problem with LanguageSupport and the german package, I uninstalled it and its working perfectly now. Could be a bug or I did anything wrong.
  5. Great module, worked fine for me! But since a couple of days, for any reason, it doubles my costum image fields. Updated it to Version 0.0.3 but still the same problem. I dont know what happened. Maybe i did anything wrong? I didn't install any other module in the past days, as far as I know . Here are some screenshots to show you what I mean: http://www.directupload.net/file/d/4071/vtafnu3t_jpg.htm http://www.directupload.net/file/d/4071/n592lj7s_jpg.htm Any ideas what could be wrong? Thank you!
  6. Thanks a lot! I didn't find that post. Thanks for you tip. Came up with this: $today = date('d.m.Y'); $events = new PageArray(); $items = $pages->find("template=repeater_dates, date>=$today, sort=date, include=all"); foreach($items as $item) { echo $item->date; echo $item->parent->title; } works fine for me
  7. Hi everyone, I'm trying to get some Dates sorted from a repeater field called "dates" which includes the fields "date" and "duration". Now i want to get the field "date" sorted by date. Cant get along with find("sort=date"), cause I don't know how to find a field input from a repeater. Here's what I got now: $trainings = $pages->find("template=training_single"); foreach($trainings as $t){ $datesrepeater = $t->dates; foreach($datesrepeater as $date){ echo $date->date; } that outputs the dates, but how can i get them sorted? Thanks for your answers Malte
×
×
  • Create New...