Jump to content

aren

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by aren

  1. Hi everyone! I've been away from web dev for a while (designing more), so I'm feeling a bit out of touch. Can anyone tell me what's the best way to combine multiple rss feeds in one single site/page these days? Preferably with javascript (or is there a better way these days?) What I want to do is to fetch only the images of multiple (hundreds, probably) rss feeds and display them in one site/page as one big gallery. Thanks, and cheers!
  2. Nope, I had found Admin Hot Keys, but not that one. Thank you!
  3. Does ProcessWire have an option/keyboard shortcut to save/keep unpublished AND add another page? For a faster workflow of adding bunch of pages, I'd like to save them (keeping them unpublihed) and automatically be redirected to another page editing. Cheers aren
  4. thanks for the explanation teppo! suppose it would be the same problem if i wanted to host images on a subdomain for a better page load time? (in a case of a site with tons of images).
  5. Hey guys, Why does ProcessWire automatically creates folders for each page images? Is it possible to create and use my own folders for uploaded images? For example, I want a "projects" folder to store project images and a "blog" folder to store images from the blog. How can I do that?
  6. Ahh, thank you very much for this Adrian!! Exactly what I needed!! I'll download it right away!
  7. How to automatically rename the image files to a random string during the upload process? For example, I have an image named "big_poster.jpg" and I want it to be saved as something random, for example "2680542675157_cc7m541v_l.jpg"
  8. Does ProcessWire have a bookmarklet that allows you to quickly save/post images, text, videos or any other content from web pages to ProcessWire pages/fields?
  9. Thanks @kongondo! I've looked through the PW modules page but somehow didn't find this
  10. Is there any way/module to view all uploaded images/assets in the the back end admin?
  11. Awesome work, @cmscritic! One of the best PW websites I've seen so far! I'd also love to read a case study on the WordPress/ProcessWire conversion. Specially on how you setup the categories/topics and tags.
  12. Hi apeisa, thanks for such a quick reply! So I don't have to include the templates "articles.php", "images.php" and so on.. in the code? Oh, and can you please tell me what the "render" in the code does?
  13. Hey guys, I was wondering if it's possible to build a Tumblr-style website with ProcessWire. Sections/pages would be Article, Image, Video, Audio and Quote. But how can I get the posts from all of them (ordered by date as in a blog) in the homepage? Many thanks for any help!
  14. Hi guys, I have a few questions regarding a few common practices when dealing with CMSes: 1- How can I install ProcessWire above the root for better security? 2- How can I change the default folder for uploading images? For example, I'd like to create a folder /uploads in the root and have all my uploaded images in there. And can I have multiple folders or just one folder for all images? 3- Is it possible to have site assets (css, js etc) stored in a folder /assets in the root? If you have other common practices or security tips etc and you'd like to share, please do.
  15. For large blogs or news systems, how easy/tricky would it be to setup something like this: Home About Blog -2013 --April --March --February --January -2012 -2011 Contact Only for organization purposes. URLs would still appear like this: http://mysite.com/blog/my-post-title Is it possible to setup something like this?
  16. Thanks DaveP and nik! I find PHP a lot easier like that!
  17. Is the code above the same as the code below? <?php $drinks = $pages->find("template=drink"); ?> <h2><?php echo $page->title; ?></h2> <ul> <?php foreach($drinks as $drink); ?> <li><?php echo $entry->title; ?></li> </ul>
  18. Ahh, yes I'd just like to show each drink featured in blog posts (no repeated drinks). Do I have to change something in the code? Thanks Matthew!
  19. Thanks Diogo! Can you just tell me what drink!= means? $entries = $pages->find("template=entry, drink!=, sort=drink");
  20. Hey diogo, I have a text field named "Drink" for each blog entry - where in each entry I'll add a kind of drink (eg: gin, water, beer etc) So what I want to do is create a list containing all drinks I've added in all blog entries so I'd have something like this: <h2>Drinks:</h2> <ul> <li>Beer</li> <li>Gin</li> <li>Water</li> etc </ul> In this example, the list is sorted alphabetically..
  21. Hey guys, Let's say I have a custom field named "Drink" - How can I output a list of all drinks based on this field values and sort it by name or date? Cheers, Aren
  22. aren

    Blog with PW

    Wow! Thank you Joss!! Much appreciated! Time for me to do a little studying.
  23. I'm liking ProcessWire very much, but I still find setting a blog with it sooo complicated compared to others CMSs. Most of my projects use blogs and news sections, so may I ask if there's any plans to simplify the blogging setup in the future? And for now, is there any *simple* blog profile (just title, date, category and post) with *no* CSS styles - just a blank slate? Thanks!
  24. Thank you, Joss! Really appreciate your time for the explanation!
×
×
  • Create New...