aren
Members-
Posts
27 -
Joined
-
Last visited
Everything posted by aren
-
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!
-
Nope, I had found Admin Hot Keys, but not that one. Thank you!
-
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
-
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).
-
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?
-
Ahh, thank you very much for this Adrian!! Exactly what I needed!! I'll download it right away!
-
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"
-
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?
-
Thanks @kongondo! I've looked through the PW modules page but somehow didn't find this
-
Is there any way/module to view all uploaded images/assets in the the back end admin?
-
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.
-
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?
-
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!
-
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.
- 6 replies
-
- common practices
- security
-
(and 2 more)
Tagged with:
-
Simple responsive documentation admin theme
aren replied to Michael Murphy's topic in Themes and Profiles
Looks amazing! -
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?
-
Thanks DaveP and nik! I find PHP a lot easier like that!
-
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>
-
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!
-
Thanks Diogo! Can you just tell me what drink!= means? $entries = $pages->find("template=entry, drink!=, sort=drink");
-
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..
-
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
-
Wow! Thank you Joss!! Much appreciated! Time for me to do a little studying.
-
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!
-
Thank you, Joss! Really appreciate your time for the explanation!