
Page Hit Counter – Simple Page View Tracking
By
David Karich, in Modules/Plugins
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By Sanyaissues
I hadn't developed a website for a while, but here we are. It's a very simple minimalist website to showcase the latest work of Dominican Artist Patricia Abreu Mota.
Site: https://patriabreu.com
Modules:
Procache ❤️ Seo Maestro Profiler Pro Lister Pro ProcessRedirects
-
By benbyf
Hi, Looking to create form elements on a page–some input with a colection of form inputs and the appropriate labels and variables for that input. I've used ProForms in the past and rolled out my own when creating simply one off forms, but I wonder if anyone has found a good way of allowing form creation on page editing so that clients can adhocly make and edit forms?
Thanks
-
By verdeandrea
Hello,
I am using ProCache v3.1.8 on ProcessWire 3.0.96.
Everything worked fine in the past, but today I noticed that the css file serverd by procache gives a 410 error.
The file is there, I checked.
I deleted the cached files, I deleted the css file, I looked into the .htaccess file looking for some clues about this problem but nothing worked.
The only way i can see my website correctly again is disabling ProCache.
Has anyone any clue on what could be the cause of the problem or on what should I do to fix it?
Thanks!
-
By Atlasfreeman
Hi!
I want to make a small site, a one page site.
And i have this idea about doing 2 to 3 diffrent template that i can load into the index / home page.
I want to do this with an array so that i can keep creating more topics (with the template) id needed.
<?php include('./head.inc'); // include header markup ?> <?php $children = $page->get('template=onecolmn|twocolumn, sort=sort'); foreach($children as $child) { include($child); } ?> <?php include('./foot.inc'); // include footer markup ?>
As you can see i have to template wish i want to control from the backend.
I know include does not work this way, put what is my other option to make an array that loads the whole page on an other pages.
-
By Liam88
Hi All,
New user over at Processwire and have been rebuilding my site based on this CMS.
I have been able to find so many answers through Google but I'm a little stuck on this one.
I have my services page -> services categories -> category children.
An example of those would be - domain -> services -> ppc -> management
I also have a set of tags which have different names - services-tag -> grow-your-traffic
Under these tags I would have multiple links to pages such as ppc, seo, social media and so on.
A second example would be - services-tag -> convert-your-traffic
Under here i would have multiple links to pages such as CRO
Now the set of tags are not visible on-site as they are only created to give overview content to the main services categories.
Using the categories and the tags I am looking to produce a layout such as (i have also attached an image as an example:
Tag_1 headline
Pull all services categories linking to Tag_1
Tag_1 snippet
Tag_2 headline
Pull all services categories linking to Tag_2
Tag_2 snippet
So far I have this snippet which is pulling in the tag content but unable to get the posts to show under each of the tags.
If i change the if and statement to "tags" instead of "tag" then all posts show under all tags. Where as i want it to show only the posts which are linked to that tag.
<?php namespace ProcessWire; $tags = $pages->get("/categories-services/")->children(); // Gets the tags $posts = $pages->get("/services/")->children(); // Gets the services categories $link = $tags->ref_6; // Gets the tags and services categories link - under here you have pages_id (services cat id) and data (tags id) // Tag header and summary foreach($tags as $tag) { // This breaks down the tags into sections echo '<section id="services"> <div class="container"> <div class="row"> <h2 class="heading-1"><span>'. $tag->headline.'</span></h2> <p class="mb-5">'. $tag->summary.'</p> </div> <div class="row justify-content-around services">'; // Main services categories that link to the above tags if ($posts->id === $link->pages_id && $tag->id === $link->data){ foreach($posts as $service){ // This pulls in the services categories under the tag header. echo '<div class="card flex-card" id=""> <div class="card-img"> <a href="/'. $service->name.'" title="'. $service->name .'"> <img class="card-img-top" src="../assets/files/'. $service->id.'/'. $service->img_1.'" alt="'. $service->img_1.'" title="'. $service->img_1.'"></a> </div> <div class="card-body"> <h3 class="card-title">'. $service->headline.'</h3> <p class="card-text">'. $service->summary .'</p> <div class="card-action"> <a href="" title="'. $service->name .'" role="link" class="link">View service<span></span></a> </div> </div> </div> '; } } // Grey snippet text echo '</div> </div> </section> <div class="snip-2 light-grey"> <div class="container"> <div class="row text-center">'. $tag->get('grey') .'</div> </div> </div>'; } ?> I appreciate this is a long post but i'm trying to be clear as I appreciate everyone's time.
Any insight into where I am going wrong is greatly appreciated.
Liam
-