Jump to content

JFn

Members
  • Posts

    62
  • Joined

  • Last visited

Everything posted by JFn

  1. Will there be another master release in the near future? I've seen some nifty features passing by in the dev version since 3.0.98, and eager to use some of them in production environments...
  2. JFn

    Profields

    Are the Profields support pages down? Can't locate them anymore... edit: sorry, my bad, my license expired...
  3. Hi Horst, pim2 v0.2.9 running on PW 2.8.62 overwrites the original image instead of making a variation. I'm using the canvas method <img src="<? echo $image->pim2Load('pim')->setQuality(90)->setOutputFormat('png')->canvas(240,160)->pimSave()->httpUrl; ?>"> chears, JFN. Is this thread abandoned??
  4. Or just do $session->cursus = $page->title; and $session->cursus = NULL; and to retrieve echo $session->cursus;
  5. Something like this should work: $newsposts = $pages->find("parent=/news-artikel, expiry_date<".time()); foreach($newsposts as $newspost){ $newspost->parent = "/older-entries"; $newspost->save(); }
  6. Correct me if I'm wrong, but it looks like you're mixing up front-end and back-end processwire cms stuff. Are your visitors editing the scorecards in the backend/cms? If so, make a front-end page with a form that has a pulldown menu for selecting the course, that way you can pre-fill the tees, colors and distances. And don't bother how it looks in the backend, here you just provide all your course and tee data (and save the visitors scores) If you wan't to organize all the course backend options more compact (and with less overhead) have a look at Ryan's ProTable module http://processwire.com/api/modules/profields/table/
  7. You can use the module AdminCustomFiles by Martijn to accomplish this, and add the link via jQuery when 'edit page' loads. Sunday morning
  8. Just out of curiosity, is there a reason why the Pages > Tree doesn't point to 'page/list' but just to 'page' ?
  9. Very usefull module, thanks. For me an easy way to inject custom jQuery wizardry into some pages, without touching the core modules.
  10. JFn

    Lister

    Looks like a great tool. Will ProLister be part of the ProFields package?
  11. If you make custom admin pages (ie. with a custom process), and want the new theme module applied to them, make sure you change the site's index.php "$adminTplDir" variable (~ around line nr. 80) to: $adminTplDir = "modules/AdminTheme/AdminThemeDefault"; Great new theme module btw !
×
×
  • Create New...