Jump to content

kongondo

PW-Moderators
  • Posts

    7,529
  • Joined

  • Last visited

  • Days Won

    160

Everything posted by kongondo

  1. Titanium, mind creating a feature request to Ryan on GitHub? Thanks.
  2. See some other options by Ryan here: https://processwire.com/talk/topic/407-processing-contact-forms/?p=3106
  3. OK, let's hear what the experts say ....I agree it would be nice to have a custom config.js
  4. Custom configurations are now in /site/modules/InputfieldCKEditor/. I am guessing you know that now CKEditor is the default editor in PW (see dev branch) I am guessing but not sure that you could also add your custom config.js to that directory instead? Have a read here: http://www.flamingruby.com/blog/processwire-weekly-13/ [see Upgrades to CKEditor] https://github.com/ryancramerdesign/ProcessWire/tree/dev/site-default/modules/InputfieldCKEditor
  5. Update: Minor version bump to 1.2.1 after some minor styling issues updates. Documentation: I am taking a short break from writing code to write some badly needed documentation for Blog (and some other PW tutorials if I get time ). I am writing this documentation as tutorials which I will post on my website soon. I'll keep you updated. I haven't forgotten any Blog features pending requests
  6. Hi all, Here's a preview of a Gallery photo album module I am working on (very slowly! ). Development is currently in closed beta testing. The module will consist of a backend (as seen on video below) and a frontend that is framework and lightbox agnostic, aka plugin whatever and it will still work. Features Unlimited number of albums and sub-albums (easy to query using PW API) Multiple methods to add albums and photos (including uploading images and zip files, scanning a folder for FTP'ed photos, etc) Automatic album and photo creation based on names of folders and files respectively Bulk editing (moving, deleting, tagging, etc) Manager themes in several colours A bit of eye candy Etc... This is in beta so it is still rough around the edges. Feature suggestions? Yes please Apologies the video is way too long and you might get bored toward the end...
  7. Manlio, I may not be able to give you specifics but here's a couple of things... Registration You say this but then add this I am a bit confused. To clarify, you mean that you will not be registering NEW users because you already have users, right? Users What format is your table in? CSV, SQL? Importing is not difficult but we need to know the format they are in. Yes, extending the users template is easy and is normally the way to go. There's various examples on the forums. If you need more help here just ask. Importing passwords can be tricky though. No need to create users again. Just use PW inbuilt users (which, behind the scenes, are actually pages themselves! ; Don't let this confuse you. Think of pages as data storage containers [of course the data is in the fields themselves]) Courses One thing you need to clarify is how you want the site to function. I guess here you are really talking about categorising your content. Have you seen this tutorial I did about categorising content? If not, have a look and see where your use case fits in. Then, you can come back and structure your site in the most suitable fashion. We appreciate all the help we can get. Yes, tutorials are not that many but as you have probably noticed, we are working on it. My advice for your task at hand. Divide up the task and tackle one issue at a time (but of course, you need to have a clear picture of where you are going first, otherwise you might be going round in circles). Try things and ask specific questions (once you've searched and not found an answer is preferable ) but feel free to ask please.
  8. Mac installs: https://processwire.com/talk/topic/5797-setup-a-processwire-environment-on-a-fresh-macos-x-install/ https://processwire.com/talk/topic/4917-the-admin-cannot-be-reached-in-new-installation/ https://processwire.com/talk/topic/98-installing-on-mac-localhost-going-all-sorts-of-wrong/ https://processwire.com/talk/topic/6803-help-needed-for-local-setup-on-a-mac/
  9. For those reading this great thread, if you haven't seen it, Ryan has neatly summarised various approaches in the Tutorials section How to structure your template files: http://processwire.com/docs/tutorials/how-to-structure-your-template-files/
  10. @Adrian, Thanks for this. Not sure your solution would work in Soma's approach? Remember, there is only one template file in his approach (main.php) which has most of the html. The .inc come after <body>. Hence $head in main.php would remain undefined. Your solution would work with Ryan's approach though. I could be wrong
  11. @thistimj, Yes. Something like this in the head of your main.php should do it: if ($page->template == "special") { echo '<script src="' . $config->urls->templates . 'js/modernizr.foundation.js"></script>'; echo '<link rel="stylesheet" href="' . $config->urls->templates . 'css/style.css" type="text/css" media="all">'; }
  12. @Teppo. Works like a charm with CSS and PHP. It remembers code type. With HTML on one occasion it remembered, then forgot. JS, it hasn't remembered. For CSS and PHP code on frontend is generated with lang=PHP or lang=CSS, i.e <pre class='php' lang='php'>. With the HTML and JS, they only get the class=html...etc. No worries, I can live with it like this..Thanks again.
  13. Thanks Teppo...this is what I was missing (I think): pre[class,lang](*); Let me try it out...Otherwise it was just generating <pre class=php>....</pre>
  14. Hi EtienneOz, Welcome to the forums. Have a look at Adrian's Migrator module. I think it could accomplish this.
  15. @Teppo. Care to elaborate pls? I tried your trick but pbckcode still doesn't remember language when I edit a code block. Thanks
  16. Admin > Access > Permissions....is one way of finding out (although in there you might find other non-PW permissions)...
  17. Yeah, incidentally I mentioned this elsewhere today. I got stuck on some recursive function . It's not high on my priority list atm but will have a rethink at some point...
  18. @OrganizedFellow Thanks. Glad you like the module. You've been away a while...
  19. I agree on the need for such tutorials. Meanwhile, have search of the forums (using Google, of course); all your requests have been previously addressed in some way. These will give you an idea on how to approach the issues....But I agree, tutorials will explain them better and will be more visible than searching the forums for hidden gems
  20. One of the reasons I created my module... https://processwire.com/talk/topic/2787-custom-menu-not-related-to-page-tree/
  21. Thanks for the install instructions. I guess that's where I went wrong...
  22. Oops I thought I added no error messages. Yeah, no errors...yes debug is on...Let me try again...
  23. Nico, After installing any of the two testing themes I get a blank white screen everywhere (back and front)...am I missing something? On Dev PW 2.4.11.
  24. Well your idea to build this using PW pages has just given me an idea...In my case I was using a custom database to allow for any menu item (be it an external or internal link) to be a parent or child of any other menu item (i.e. not align to the PW tree). I got stuck at deleting and recursively re-parenting menu items....
  25. Sparrow, no need to apologise for anything . Your question will help the next guy. Once I write the API documentation, you'll realise that you can also tweak this Blog to make fundamental layout changes. You can output bits and pieces (tags, posts, categories, authors, comments, etc) anywhere using its API since it is a PW module. All these bits and pieces are independent of each other. This is similar to PW pages in the sense that you can output page fields anywhere in any order in your site or even not output any of the fields.
×
×
  • Create New...