Jump to content

Nick Belane

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by Nick Belane

  1. Yes, I meant the second one. The whole thread is about the second one... 😉 I will check the hook idea. Thank you
  2. hmm, I tried it already but nothing changed... And it doesn't make sense in my opinion because you choose a page in the bookmarks not a template.
  3. Hi all, by default the bookmark ("Add New") gets the title of the bookmarked page. Is there a way to change the name of these bookmarks? e.g. something like "new reference", instead of "references". Thanks in advance
  4. As you said: "<?=$page->type_menu ?> should call a Processwire field...". But you want to include a page and not a field.
  5. I spent almost 2 days of searching for that stuff... Thank you! I love you ?
  6. Hi Joshua, the module works fine. I would like to use the Textformatter to generate a button. [[privacywire-choose-cookies]] But I don't get how to implement the shortcode.. ? In a Textfield? That doesnt work. Sorry for this noob-question. Thank you! Ok..now I got it!
  7. Hi, On desktop everything works fine: Chrome, FF, Edge shows webp On mobile (IOS) nothing works at all: no webp and no fallback jpg/png in no browser PW Version: 3.0.142 .htaccess: AddType image/webp .webp config.php: $config->useWebP = true; $config->contentTypes('webp', 'image/webp'); ImageMagick 7.0.8-25 Cleared cache! Any ideas?? Thank you
  8. Excellent work Wanze, thank you very much! What do you think about moving the seo-stuff in a new tab in the page editor like MarkupSEO does? So it would be completely detached from the content tab. Content and SEO separated.
  9. I have the same "issue". sitemap.xml is working properly but throws a 404 in jumplinks.
  10. Deleted, see below.
  11. Yes, now it works. Thank you!
  12. Hi Robin, now it works in Chrome but not in FF (58.0.1). module Version is 0.1.3
  13. Hi Robin, I added "LinkFilesMenu" to the "CKEditor Toolbar" settings field and the icon appear in the toolbar. But it doesn't show the pdf files when I click the icon. No dropdown. Do I have to name the file-field in a special way? It's a multi-language site.
  14. Thank you DaveP! This was really the first good explanation for the namespace-stuff for me as a newbie... Great community here!
  15. "I am not satisfied with how it performs. " Why?
  16. Ah, thank you. Now it works. But I don't get it. I thought the namespace must defined on the top of the page. Just one time. I have set this in the header include. Do I have to set the namespace in every include?
  17. Hi everybody! The following code is an include in different templates and works fine: <?php if ($page->id != 1) { ?> <div class="container"> <div class="breadcrumbs hidden-xs hidden-sm" role="navigation" aria-label="<?= __('Sie sind hier'); ?>:"> <span class="blue"><?= __('Sie sind hier'); ?>:</span> <?php foreach($page->parents() as $item) { echo "<span><a href='$item->url'>$item->title</a></span>"; } echo "<span>$page->title</span>"; ?> </div> </div> <?php } ?> But if I remove the first if-statement "$page->id != 1" it throws an error: "Uncaught Error: Call to undefined function __()" Probably it has to do with the foreach loop. I am not the best in PHP Thanks in advance
  18. Thank you kongondo, very helpful! In the first model (single Category) you create for each Department a different template. Why? Isn't that a bit overkill if you have e.g. 30 Departments (If any department-template have identical fields)? Why not use one template for all departments and filter another way?
  19. Thank you mr-fan! It looks pretty cool..I think I dive into the first/ "easy" solution But I can't find a PageTable Field in my Version...(2.7.2)
  20. Thanks for your answer! Yes, I want to know the number of downloads for a few pdfs (separately for each file) No, I don't need to track separately for each user. This is the site and the page "downloads": http://www.schaefer-consult.com/downloads/ There is one template with different fields. One field (type:file, name:downloads) contains all the pdf-files of the page. The body-field contains the links and the copy-text. Something like that: <p>Muster-Baubeschreibung für Asphaltarbeiten<br> (Stand: 01/16)<br> <a class="pdf" href="/site/assets/files/1020/muster-baubeschreibung_asphalt-16-1.pdf" target="_blank">Muster-Baubeschreibung Asphalt 16-1</a></p> The following would be easier and more dynamic, but not so flexible for my customer: $liste =" "; $liste .="<ul>"; $pdf_files = $page->downloads; foreach($pdf_files as $pdf_file) { $liste .="<li>{$pdf_file->description}<br><a href='{$pdf_file->url}' class='pdf'>{$pdf_file->name}</a></li>"; } $liste .="</ul>"; echo $liste; The best solution for us would be something like that in the backend: file-a.pdf (321) file-b.pdf (222) file-c.pdf (123) Danke für die Geduld! ;-) Grüße Nick
×
×
  • Create New...