Jump to content

pwired

Members
  • Posts

    2,318
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by pwired

  1. Since this is a one page site as you mentioned there cannot be too much content involved and so I wouldn't bother. Create a backup folder alongside your templates folder, download your template files, delete the pages in the tree and setup a new page in the tree with a template file in your backup folder. You can also make use of Processwires ability to export your templates and fields: https://processwire.com/talk/topic/11720-export-fieldstemplatesconfiguration-from-one-site-to-another/?do=findComment&comment=108958
  2. My last download was uikit 3.0.0-beta.22 I am happy to see that they made it to beta.30 Not sure what you are after but with this code you can see the logo adapts to small screen: <div class="uk-section"> <div class="uk-grid-match uk-grid-small uk-text-center" uk-grid> <div class="uk-width-1-2@s"> <img src="images/logo.png" alt="" width="1183" height="167" /> </div> <div class="uk-width-1-2@s"> <div class="uk-card uk-card-default uk-card-body">1-2@s</div> </div> </div> </div> Have a look at http://www.uikit3.freehostia.com/ and resize your browser window all the way to small and with this code the logo simply is responsive all the way: <div class="uk-section"> <div class="uk-grid-match uk-grid-small uk-text-center" uk-grid> <div class="uk-width-1-1@s"> <img src="images/logo.png" alt="" width="1183" height="167" /> </div> </div> </div>
  3. Yes !! I guess I managed to pick it up my self around 70% but got stuck with the partials, helpers and bags . Downloaded your zip ghost-master and had a look in your templates folder. Especially your _init and _main.php finally made it all clear now. Thanks
  4. I wasn't sure about replying because you are giving wordpress a lot of attention here. But reading your a) and b) I have my 5 cts worth it: That's what I thought also years ago until I learned otherwise. Bumping into a client who wants it done in wordpress: trying to convince a client doesn't work. I spent no longer than 5 minutes opening the door to processwire, then I leave my card and move on. There are unlimited small offices and businesses out there who still don't have a website. Not true. Have a look at the api of processwire. Any experienced coder will pick up the api of processwire in no time. Processwire is decoupled so nothing to learn on the front. Just pick any framework or code your own css. And that is exactly what I tell my clients: If I am not around anymore all you have to do is to find an experienced coder and your website will go on. Heck, I bet an experienced coder will pick up the api of processwire faster than wordpress.
  5. I use winscp so scp will work then. Thanks for the link and tip.
  6. Does runcloud allow uploading custom certificates in the free plan ?
  7. fox and freedrive offer 10G for free and googledrive 15G. You have to be careful though that the one you choose will still be there tomorrow as a provider or as a service. You wouldnt want to move gigs of pictures around on the net.
  8. Did you guys know Bootstrap has a Sass version ? https://github.com/twbs/bootstrap-sass
  9. Even that was not good enough for me, I needed different desktop screens as well. Over time I noticed that some websites I made looked different on different desktop screens. I dont know if it was the configured resolution on the screen or the width of the screen it self but the sites looked different. Most of the time I had problems with the nav bar spreading out over the total width of any screen, or the complete body of the site shifting to the right on 1920x1080 resolutions. Before I used the karpolan online service to check my websites which I have good experience with: http://karpolan.com/services/site-viewer/
  10. Anyway this is one hell of a cool morph/sound animation done in a web page. Strange, I am on an Acer laptop Aspire E15 and dont experience any lag or resource drain from the page. Didnt know threejs is involved here too. Lets give it a try to replicate this animation.
  11. I guess the spiked ball animation is done with greensock. https://konsernsjefen2017.arkivert.no/ http://www.weareuprising.com/work/1
  12. Wow, never seen that cool of an animation, both the morphing and the sounds. How is it done ? I looked at the page source but couldnt figure it out yet.
  13. Elevating music, very elevating . . .
  14. If you use the delayed output strategy you can use a placeholder in _main.php to output your layout for each page. Set values for a default style in _init.php. Then on the template files for each page you can override the default values and create a new style for each page as you like. You can maintain the styles in a single folder under templates. From here you are not far from making your own style selector/guide. https://processwire.com/docs/tutorials/how-to-structure-your-template-files/page4 (at the bottom)
  15. Hi, I found this piece of api code from Adrian and have modified it a bit to my needs: $np = $pages->clone($page, $parent); $np->of(false); $np->parent = $pages->get('/zundapps/'); $np->title = 'Zundapps-opbouw9'; $np->name = 'zundapps-opbouw9'; $np->save(); It's doing exactly what I want. Thanks fly out to adrian.
  16. Hi, I have a page called "projects" with only 3 fields: pictures, main-pictures and text. How can I copy the content of this page to another page called "setup". This page has the same fields as the page "projects"
  17. I use vmplayer, nowadays called workstation player. Free for home use and 166 euro for a commercial licence. It is by far superior to virtual box in so many ways. Have a look here: https://my.vmware.com/en/web/vmware/free#desktop_end_user_computing/vmware_workstation_player/12_0
  18. echo "<div class='cke-content'>$page->body</div>"; Good code example of processwire doing things the decoupled way without limits
  19. http://blog.capterra.com/the-7-best-free-help-desk-software-tools/
  20. This is strange. You wouldnt expect problems with bluehost at first thought. Looks like a decent hosting company. I am on the road right now otherwise you could pm me your cpanel and ftp access so I could check what is going on there. Maybe one of the others have time now ? If not by then I am back home at 15:00 GMT
  21. What is the name of your hoster ? Is it bluehost ? Do they have a trial hosting period ? Would love to try install processwire there my self.
  22. I agree with Macrura. I would also recommend to install processwire locally on your laptop/computer and make your self familiar with processwire.
  23. Key issue is to shed "regular cms thinking and habits" and get used to processwire decoupled way of doing things. Processwire having 0 limits can be confusing for a while. This issue has many posts in the forum. I recommend reading them. Also going through tutorials speeds up getting used to decoupled and the page concept. https://processwire.com/docs/tutorials/
  24. Alternatively you can temporary upload your own personal index.html page with "site in maintenance"
  25. https://processwire.com/api/ref/database/query/ Usually missing a closing parenthesis or a backtick or using a keyword in SQL that you have to quote
×
×
  • Create New...