Jump to content

pwired

Members
  • Posts

    2,318
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by pwired

  1. Hi, I am using the core Comments fieldtype in Processwire. It has the default Form input labels Name, Email and Text. This question has been asked before but I found no answer in the Forum section. How can I add extra input labels to the Comments Form such as Country, Year. etc ?
  2. Hi, I evaluated the updated ProfileExport Module v4.0.1 I get the same error as JeevanisM: Profile not found I checked for any special characters in my profile name, files that should be there and permissions on the server I am using Processwire 3.0.184 Anyone have an idea ?
  3. Hi Ryan, Big thanks for doing this, as it adds to beginners friendly and jump start with Processwire. Merry christmas to the Processwire Family
  4. How many processwire users find this NOT useful ? Some user base polling or voting would be on its place. For so many years having these profiles out of the box added to beginners friendly and jump start with processwire.
  5. You can keep on using UIKit but it is not a silver bullet solution for any situation. Find any mobile menu/accordion navigation on jqueryscript dot net for free with code examples, and demos ready for you to use with processwire. Have a look here: https://www.jqueryscript.net/
  6. 1) What about keeping the main layout styling in vanilla css and put only utility classes for final layout tweaking ? That would give you the best of 2 worlds ! 2) Having said that, how many percent of all the available tailwind utility classes are really going to be used ? Certainly not all of them in every website you make, let's say 40% - 50% - 60% ? 3) That brings me to the idea to sort out only the most useful ideas and classes from Bulma, Spectre and Bootstrap and bring them in your own utility class framework. That would make things certainly more effective. How much time would that take ? Sticking to only essential and useful classes, not that long.
  7. I have been following tailwind css for a while. Can't help it but having so many classes in a tag really clutters up your html. What has become wrong with vanilla css ?
  8. I can't believe no one is mentioning PHPED from Nusphere http://www.nusphere.com/products/index.htm Yes it costs money but so what if you really get something good.
  9. Hi Mikeindee Thanks for letting know about the Raspberry operating system. A friend and me want to start setting up our own server with a Raspberry 4. We will see how far it will take us.
  10. What operating system version is running on that Raspberry ? Did you install that operating system your self ?
  11. Ever worked with VirtualBox, VMWare, Proxmox, other ? You build only once a virtualmachine with all your preferred programs, languages, libraries, tools, utilities, components, snippets, etc. etc. You use that virtualmachine as a Template. After that it is simply cloning the Template for each Project. It's like having multiple laptops in a single laptop ?
  12. I do not have Windows since I am not fond of it either. We'll you can't beat Laragon5, HeidiSQL and WinSCP when it comes to Windows ? I manage every project in it's own virtualmachine, I run every virtualmachine from a simple usb3 2Tb external hdd ... all very practical.
  13. That is why I like VirtualMachines. It let's you bring together the best of different worlds. Oracle VirtualBox is there for Windows, Linux and for Mac also. https://www.virtualbox.org/wiki/Downloads
  14. I am a Laragon5 User + HeidiSQL + WinSCP , all 3 in a virtual machine, saves me a lot of time , fast, powerful, stable ... and for free
  15. Perfect design/photos/fonts/colors just one thing: https://clinicatrust.pt/contactos/ This page can't load Google Maps correctly Do you own this website?
  16. Another very good example of how to handle parts of a website efficiently in processwire "as a page" I was building a website from scratch lately and was fiddling my css around to look for a way to get it better organized. And then came across this post from Diogo again: https://processwire.com/talk/topic/2210-help-getting-a-custom-styles-php-file-working/?do=findComment&comment=20641
  17. Congratulations, very original design that really stands out from the crowd.
  18. I was addressing your first question This is a different question Have you read the Processwire Documentation ? Your answers are here: https://processwire.com/docs/start/variables/templates/ --------------------------------------------------------------------- Creating a new template with api <?php namespace ProcessWire; $fieldgroup = new Fieldgroup(); $fieldgroup->name = "something"; $fieldgroup->add("title"); // add some fields $fieldgroup->add("body"); $fieldgroup->add("summary"); $fieldgroup->save(); $template = new Template(); $template->name = "something"; // must be same name as the fieldgroup $template->fieldgroup = $fieldgroup; $template->save(); --------------------------------------------------------------------- Adding fields to a template with api <?php namespace ProcessWire; $template = $templates->get("some_template"); $template->fields->add("body"); // add some fields $template->fields->add("summary"); $template->fields->add("images"); $template->fields->save(); --------------------------------------------------------------------- Forum https://processwire.com/talk/topic/4921-how-to-create-template-file-using-api-under-a-module/ https://processwire.com/talk/topic/352-creating-pages-via-api/ Examples https://processwire-recipes.com/recipes/add-fields-to-template/ Beginner mistakes https://processwire.com/talk/topic/19415-trying-to-create-field-using-api/
  19. Have you seen the processwire documentation ? https://processwire.com/api/ref/field/ 1) Setup a field of type textarea 2) Echo or include the textarea field where you want it echo $Yourpage->yourfield; include $Yourpage->yourfield;
  20. There are form tutorials you can find in the forum that you can use for what you need.
  21. Hi MarkE, Thanks for pointing to an example use of this. Yes, with some easy business logic on the template file we can make the _main.php choose what footer type/content to show in what case or on what front website page. I am also playing with taking the header lines out of the usual _inc file and move them into "a header page" fields and see how that goes.
  22. The concept "everything is a page" just keeps on challenging. So why not create "a page" for the website header and footer. Give them fields, and who knows how cool this can work out ...
  23. Hi Here my 5cts to it for Windows users. Laragon has been updated to version 5.x and now works also with php8 (There is even a x86 version available if needed) Laragon 5.x is very easy to set it up to work from php5.x to php8.x
  24. How many times this subject already ? Anyways I tried Bootstrap - UIKit and funky Tailwind but guess what, I returned back to pocketgrid because it can't be beated in usage and speed: https://arnaudleray.github.io/pocketgrid/faq/ https://arnaudleray.github.io/pocketgrid/
×
×
  • Create New...