-
Posts
314 -
Joined
-
Last visited
About ottogal
- Birthday 06/18/1949
Profile Information
-
Gender
Male
-
Location
Berlin/Germany
Recent Profile Visitors
3,917 profile views
ottogal's Achievements
-
Hi @Gary, before choosing any of the countless slider scripts out there consider reading Heydon Pickering on inclusive design of sliders: A Content Slider (For sure not easy if you are a beginner...) Kind regards ottogal
-
Faq template, how to make just one?
ottogal replied to franciccio-ITALIANO's topic in Getting Started
Salve, @franciccio-ITALIANO I think you don't need several templates. Just create one template and add the two fields (of type Textarea). Then for each FAQ you create a page that is using this template. -
Hi, wouldn't you want to calculate the $diff with the unformatted timestamps and just output the result in 'Y' Format? (Or I misunderstand the use case.)
-
Trying to create progress bars for Processwire generated cards.
ottogal replied to spercy16's topic in General Support
As far as I know in PHP a quotient of integers with a non-integer value is treated as float. So I'd try to cast the $percent value: $percent = (int) $percent; or $percent = intval($goalNum / $raisedNum);- 13 replies
-
- conditional statement
- typecasting
-
(and 4 more)
Tagged with:
-
Grouping Unique Results / Categories and Subcategories, help?
ottogal replied to John W.'s topic in API & Templates
👍🍺 -
Grouping Unique Results / Categories and Subcategories, help?
ottogal replied to John W.'s topic in API & Templates
Hi John W., hoping not to misunderstand your data structure: I'm sure that the Drs. are not in the Gifts businesss, and Mary's Flower shop ist not involved in physicians' tasks. So the hierarchy of your categories should be just like your wanted output (see the attached image). Then the individuals (Dr. Adams, Dr. Smith, Mary's Flower Shop) need only to have a reference field to the Secondary Categories - not to the Primary Categories. (Since Mental Health is a subcategory of Physicians, Dr. Smith automatically is categorized as Physician...) -
Don't worry, nothing offensive here...
-
Saying "consider" and "should not", I tried to give advice - of course there is no "must not"... I'm aware that many and big players don't care, or see some benefits in their way to handle this. They ignore the arguments against it, and that is bad.
-
Please consider that flags should not be used to distinguish languages! See the notes here, visit the links:
-
Maybe this would do it: https://www.zeitverschiebung.net/en/city/2192362
-
Should be $link = next($links);
-
Aren't there missing the opening <li> tags? It should be foreach ($items as $item) { $content .= '<li>'; if ($item->front_position == $item->index() { $content .= '<a href="' . $item->url . '">' . $item->title . '</a>'; } $content .= '</li>'; }
-
No problem here...
-
Extremely helpful hint - thank you!