Jump to content

Nick Belane

Members
  • Posts

    29
  • Joined

  • Last visited

Everything posted by Nick Belane

  1. Hi @David Karich, in the meantime, do you have a solution to this issue? regards Nick
  2. Yes, I meant the second one. The whole thread is about the second one... ? I will check the hook idea. Thank you
  3. 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.
  4. 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
  5. I have the same problem. Could you solve it?
  6. As you said: "<?=$page->type_menu ?> should call a Processwire field...". But you want to include a page and not a field.
  7. Hi Olaf, did you fix it? I have exactly the same issue!
  8. I spent almost 2 days of searching for that stuff... Thank you! I love you ?
  9. 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!
  10. PHP 5.6.38 ?? Are you serious?! ?
  11. 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
  12. Thank you arjen!
  13. 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.
  14. I have the same "issue". sitemap.xml is working properly but throws a 404 in jumplinks.
  15. Deleted, see below.
  16. Yes, now it works. Thank you!
  17. Hi Robin, now it works in Chrome but not in FF (58.0.1). module Version is 0.1.3
  18. 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.
  19. Thank you DaveP! This was really the first good explanation for the namespace-stuff for me as a newbie... Great community here!
  20. "I am not satisfied with how it performs. " Why?
  21. 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?
  22. 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
  23. 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?
×
×
  • Create New...