Jump to content

MuchDev

Members
  • Posts

    378
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MuchDev

  1. Thanks man! Yeah I thought of that but then when I started thinking about all of the different frameworks and the amount of different classes I got bored and figured people would just input what they want. I'll look into adding this on my holiday break in a couple weeks (when I will really be working on my padloper implementation too) I wouldn't mind forking some of that code from Ryan, but then his system already does everything I do and much more . I also never figured out a good way for really customizing sizes and such, you can make your field so wide but then every field is the same div around it.
  2. MuchDev

    404 Hits

    I'm a fan of a good sarcastic gif or better yet
  3. I have never really delved in to this, but would love to see a fully realized example using this method. I often stumble over how one manages manual page selection by the user for seo purposes. I would love to have a page with a combination of pagination and infinite scrolling.
  4. Well I think what your issue is that when you add a page to a page array there will only every be one of that item. You can save the page with your changes but going from your code it looks like you just want to create events from a base event. For this you could look up how to create a new page of the template type that you want or an easier way...just use a php array with the values that you want that are specific for your template. I am sure that others will jump on with real native processwire solutions but without a serious look through the api docs I wouldn't know (that isnt saying much though as I am no expert).
  5. I'll be rolling this out to my personal site when I get some time. I never bothered to set up encryption on a one page business card site. I'll let you know if I have issues .
  6. Man you are a boss! What about google drive / dropbox uploading now I'm just being difficult. Seriously though, this is going to be super useful. I can think of a musician I know that I'm going to be building a site for and I was really wanting to handle his content this way.
  7. hmm yeah, drag and drop would be crazy cool too. Danger scope creep warning
  8. So here is a wild and possibly silly question, have you put thought in to media preview for documents and audio files? If I have a pile of audio files in a folder I think it would be the bees knees to be able to hit preview or something with a little ajax player...
  9. Looks like fun. I've run open wrt on several routers over the years and it is a great platform for creating secure networks on the cheap. 189 is a bit spendy for the hardware, but once it hits the market it should be a pretty good choice.
  10. MuchDev

    paradiesli.net

    Beautiful site ! Were you intending to have all images be circular or is the hover effect intentional on image galleries?
  11. So if I understand you correctly you have added the fields that exist in your spreadsheet to your template, if not your first task will be to create some inputs for these fields. Once you have done that and you have added all of your data you will loop over your pages like before and test the value in the field. I used an array but if you wanted to concatenate a string you could do that as well. This is just one quick option . <div class="grid"> <?php $items = $pages->find("template=einzelansicht, sort=title"); foreach($items as $item): $firstimage = $item->einzelbild->first()->size(200,200)->url; //Test your fields for the values that you are wanting if($item->year == 'yes') $addClasses[] = 'year'; if($item->fictional == 'yes') $addClasses[] = 'fictional'; if($item->interactive == 'yes') $addClasses[] = 'interactive'; if($item->cogntive == 'yes') $addClasses[] = 'cogntive'; //create a string out of your array of options $extraClasses = implode(' ',$addClasses); //foreach loop is still running ?> <a href="<?=$item->url;?>"> <div class="item <?=$extraClasses;?>"> <div class="overlay'></div> <img src="<?=$firstimage;?>" /> <h2 class="headline"><?=$item->title;?></h2> </div> </a> <?php //unset classes for the next item unset($extraClasses); unset($addClasses); endforeach; //foreach over ?> </div>
  12. Yeah what got me thinking about all this was http://www.artsy.net which uses open seadragon for their image viewers. I will be doing something similar and I really like how their system works.
  13. Man that sucker is fast, I'd seen that on your site before but wasn't thinking about this. The main reason I am leaning towards seadragon is it's zooming features. I would really like to allow for users to drag around and zoom in on things. Thank you for this, I will keep this plugin in mind though *bookmarked
  14. So I am about to implement a viewer for artwork on a site and am wondering if anyone had any thoughts on image viewer plugins. There are around a bagillion and I was wondering what everyone's thoughts on these were. I am thinking of using open seadragon as it has full screen viewing as well as a small viewer. Does anyone have a newer/better alternative that they are a fan of?
  15. So sleek and minimal, I love it. I suppose my only critique would be on pages where there is a magazine pages view on the top, it wasn't immediately apparent how I should interact with the images. My first attempt had me trying to click and drag and then I noticed the cursor switch to <----> at the edges of the image frame. I have to stress though, this is a slick site and loads so fast even in the US. Also it is great to see you using padloper, I would love to hear about what you did to implement it in this way as I am going to be using it and would love to have a similar implementation.
  16. I have an interesting related problem. There is a website that is using a meta refresh to redirect to our domain, is there any way to filter that out using htaccess?
  17. Well I can't say for sure that upgrading will fix it per say, but it shouldn't hurt and it will give you access to all of the great work that has gone into processwire since that version. Just make sure that you don't update to version 3.0, I would stick with stable (currently 2.6.1).
  18. What is your pw version and browser? Have you tried another browser. I would possibly update processwire as that looks to be either a corrupt file in the pw core or a problem with your browser.
  19. I have not failed. I've just found 10,000 ways that won't work. Thomas Edison
  20. Sorry there man, I hope things are getting better now. As for the project I never got to try the product, but I would love to try it out as I am working on an external database management system and from the looks of it this would be a very useful resource for myself and possibly many people for various other reasons. Whatever you decide I totally understand after the amount of work that you have put into this already.
  21. I know I've always wished I could drag a page on to a number to drop it on that page...
  22. Yeah both of those modules block everything and redirect either to the login or a special page that you define. I use maintenance mode when I have to take my sites offline. One button and you are set.
  23. MuchDev

    Adminer

    https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh Something like this maybe?
  24. In pw 3.0 (still in alpha) there will be the ability to call your other instance of processwire directly from the api. What exactly are you trying to accomplish, there may be another method that may end up suiting your problem that some could help suggest, as I am sure you have noticed there are some really smart friendly people here like that guy ^^
×
×
  • Create New...