-
Posts
27 -
Joined
-
Last visited
Everything posted by Nick Belane
-
Yes, I meant the second one. The whole thread is about the second one... ? I will check the hook idea. Thank you
-
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.
-
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
-
ProcessWireUpgrade Not Showing Core Upgrade Options
Nick Belane replied to vwatson's topic in General Support
I have the same problem. Could you solve it? -
Template: how to include files OF YOUR CHOICE?
Nick Belane replied to franciccio-ITALIANO's topic in Getting Started
As you said: "<?=$page->type_menu ?> should call a Processwire field...". But you want to include a page and not a field. -
How to access to a specific repeater item based on a field value?!!
Nick Belane replied to Pixrael's topic in API & Templates
I spent almost 2 days of searching for that stuff... Thank you! I love you ? -
module PrivacyWire - Cookie Management & async external asset loading
Nick Belane replied to joshua's topic in Modules/Plugins
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! -
☁️ Duplicator: Backup and move sites
Nick Belane replied to flydev's topic in Module/Plugin Development
PHP 5.6.38 ?? Are you serious?! ? -
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
-
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.
-
I have the same "issue". sitemap.xml is working properly but throws a 404 in jumplinks.
-
Deleted, see below.
-
Yes, now it works. Thank you!
-
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.
-
Thank you DaveP! This was really the first good explanation for the namespace-stuff for me as a newbie... Great community here!
-
"I am not satisfied with how it performs. " Why?
-
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?
-
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
-
Tutorial: Approaches to categorising site content
Nick Belane replied to kongondo's topic in Tutorials
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? -
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)
-
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