-
Posts
800 -
Joined
-
Last visited
-
Days Won
6
benbyf last won the day on May 4 2022
benbyf had the most liked content!
Contact Methods
-
Website URL
https://www.benbyford.com
Profile Information
-
Gender
Not Telling
-
Location
Bristol, UK
Recent Profile Visitors
85,950 profile views
benbyf's Achievements
-
Ok my bad, i think its because i chose a course that had a pop up saying i cant use the form for that course, so a UX problem rather than a tech one in that case.
-
FYI, just had a quick look on firefox and I get jquery not found errors on the booking form page which means I'm unable to proceed
-
I'm gonna say yes, but would require some more development to achieve... I've also got a newer version personally that does subscriptions but havent got round to putting it up
-
Hi, Thanks for your purchase!! Will check it out and get back to you asap
-
benbyf started following MembersMessaging module and Any ideas for side projects with Processwire?
-
Was looking to make a local tech job board website but havent got round to it yet.
-
Thanks for your help, but not sure thats the issue. I will however check the latest version of PW to check support and report back
-
Really good point, totally forgot to add it in the information. Have added now. Summary of license: Unlimited use of software on own projects No modifications or derivative works No commercial use other than applications and services produced by Licensee No attribution is required Free software updates up to next major update e.g. where major release is v1.0.0 to v2.0.0 not v1.0.1
-
Hi Everyone! So I've been working with PW for over ten years now!!! Big thanks to @ryan and everyone in the community (genuinely such a warm community). I've made a few modules in my time as well as tutorials and this was the first that I thought might work as a commercial module: MembersMessaging This module enables you to easily setup a messaging system for your users through your site. Allow your website users to message other users on the site given a user name or similar information. Module uses the notions of threads, messages and users to describe the message relationship -> A thread is a page storing n messages including: time posted, created by user and message text, the user ids in that thread, which users have unread messages in that thread, whether messages are encrypted (and it's salt). User pages have a list of all threads they are apart. In your templates you can add: a compose message form, threads and their messages, thread reply forms, message and threads counts, as well as delete and delete all messages. You can view messages in the admin (unless encrypted set to True) and view message stats and module usage in admin page Members. Purchase here How to install? - Install Processwire - Add MembersMessagingModule folder to modules folder in processwire: /site/modules/ - Login to your site admin and navigate to Modules: yoursite.com/[admin]/module - Configure the module settings: yoursite.com/[admin]/module/edit?name=MembersMessaging` - Follow the instructions below to add messaging to your templates How to use Example usage: $mm = $modules->getModule("MembersMessaging"); echo $mm->execute(); echo $mm->js(); echo $mm->css(); Full api here. Configuration Module allows you to configure whether: to allow new threads to yourself to allow new threads to guest user role to trash or unpublish threads deleted from frontend to use select or textinput for username input to allow an All keyword to signal thread should include all users to change all keyword to something else to notify a user via email they have been sent a new message to set email sender address to change username output from user name field to some other field specified to change default max threads and messages to display to encrypt messages (using basic encrypt strategy that encrypts each message on server before DB save, and is decrypted on request) Roadmap: Available here. ------- I'm not really sure how much interest there would be in this module so I've posted it to GumRoad for now, but will be looking to work on a PW store front if theres any interest in it and other modules - I've got ideas for other modules such as deffered page publishing, image folder GUI, protected field, field dependencies, pages contraits. I'm also available for hire currently to work on sites or modules https://www.benbyford.com
-
Hi @jbaharvar happy to throw my hat into the ring too. I've been using Processwire since 2012 and have worked on various websites, modules and apps using it: some sites ive made https://www.benbyford.com/works/?f=website
-
what is this behaviour: Template html replacement by id?
benbyf replied to benbyf's topic in General Support
Super, thanks. I remember seeing this ages ago but then didnt use or realise it would be default behaviour.... so now I know ? -
I have a site that uses both static requests and then continues with partial requests to urls using ajax and blocking out if(ajax) in my template. When making the static requests I use the built in caching in PW or Procache. However in order to recieve the partial request i have to use a cache burting GET parameter. Is there any way of making both of these requests cachable...? Only thing I could think of was having different urls with duplicate content.
-
I've not come across this before but in the default install for PW3.0.226 if you add some HTML into _main.php template file: <div id="content"> <?php // template code rendered here by PW ?> </div> and then add the same html container to the template named file e.g. home.php <div id="content"> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis eros vitae metus sodales eget suscipit purus rhoncus. Proin ultrices gravida dolor, non porttitor enim interdum vitae. Integer feugiat lacinia tincidunt. Nulla laoreet tristique tristique. Sed elementum justo a nisl elementum sit amet accumsan nisi tempor. Nulla quis eros et massa dignissim imperdiet a vitae purus. </p> </div> when rendered I dont get double content containers but just one with the Lorem ipsum... What is this behaviour called??? Is there settings for it? Can it be disabled? confusing as hell.
-
Just hit into this recently, seems very concerning... is this something that needs to be fixed or has already been in later PW verisons?
-
update to php8.0 - getValidFileExtensions does not exist
benbyf replied to benbyf's topic in General Support
Thanks @BitPoet but no dice. It's also complaining about gropimage no longer working but im unable to change those fields to normal image fields... just text by default - wonder if thats part of it.