Jump to content

videokid

Members
  • Posts

    154
  • Joined

  • Last visited

Everything posted by videokid

  1. Great to read it works! Although I'm not really sure if I understand what you exactly mean here... Modify away!
  2. Your images field in the template 'team-detail' is probably not limited to '1', so I guess in this case you might try echo '<a href="'.$person->url.'" title="'.$person->title.'"><img src="'.$person->Images->first->getCrop('Staff-Photo')->url.'" alt="'.$person->title.'" /></a>';
  3. Wow, fast! I've changed the line, but no effect... oh, it's working... only the subdomain url isn't stripped and I have no idea why... Originally the second domain had a different template [which I called multisite_home], but somehow since the upgrade that is ignored [per default it uses 'home']. Which I don't mind actually. Foreach domain I do have a 'homepage' call... $homepage = $pages->get(1'); for the root $homepage = $pages->get(1373'); for the second domain it used to work just fine... Thx! Edit: deleting the domains in the module makes no difference, so I guess the module isn't working at all.... Maybe I should revert back to 2.4.x Edit2: reverting back to 2.4.1 and everything works as expected again [will try again with an 2.5.xx later] Edit3: reverted back the line you suggested to edit, the \r is back while textarea is being saved
  4. Hello, it seems I have the same problem addressed here before. I've upgraded PW to 2.5.18, previous it was PW 2.4.1 All went well, except for the Mulltisite module... It's working, but not as it previously did... the links actually include the second domain http://www.domain2.com/domain2.com/test-page/ before it was: http://www.domain2.com/test-page/ [which return a 404 page] which is the idea off course... also with google in mind, it's not ideal.... did I miss something somewhere? I'm using Soma's version BTW [also tried with Apeisa's version, same thing FYI]. Greetings...
  5. No Prob, you're welcome... @Horst Could it be the folders .PagefilesManagerxxx aren't been removed in ./site/assets/cache/WireTempDir/ and PW 2.5.19? Not tested extensively, something my eye caught
  6. Try this: $gallery = $page->f_multi_image; foreach($gallery as $image){ echo "<img src='{$image->getCrop('gallery')->url}' alt='{$image->description}' />"; }
  7. The name of my imagefield is 'images', I never use upper case, all my fields [regardless type] are lower case. I remember I had a similar set-up with following specs: PW 2.5.18 FieldtypeCroppableImage 0.8.2 InputfieldCroppableImage 0.8.2 ProcessCroppableImage 0.8.4 Guess what, the problem isn't there... Maybe tomorrow or somewhere soon I'll upgrade this one to 2.5.19 see what that gives... Or if you suggest something else? Other set-up PW 2.5.19 FieldtypeCroppableImage 0.8.3 InputfieldCroppableImage 0.8.3 ProcessCroppableImage 0.8.4 Maybe this gives you some insights...
  8. Acutally it's an upgrade from 2.5.6 to 2.5.19 because I wanted to use Croppable Image. Deleted index.php and wire folder --> replaced them with 2.5.19 dev In my config there are no imageSizerOptions, so for this purpose I've added it. 'forceNew' => true ---> resulted in your suggestion: forceNew is on 'forceNew'=> false ---> forceNew is off Even with 'off', thumbnails are being regenerated on front-end... [didn't check back-end]
  9. Serious might be a bit too much, but on the frontend getCrop('small') is being regenerated each time the page is called. In the back-end uploading goes as expected. This is in a local set-up, not tested on live server. Hope this helps a bit.
  10. Same here... Any reason why the thumbnail suffix is different then the original Thumbnail module. I'm using 2.5.19 atm and instead of rolling back a version I'm using now $imgUrl = 'site/assets/files/'.$pageId.'/'.$basename.'.-small'.$extension; if, in my case, 'small' was added before the $basename, no hassle with extension stuff... I confirm Marty Walker, it's OK for me, for the moment I set half the thumbnail size I actually want to use Overall... I'm very happy with this module...
  11. +1 for this idea... On topic: Very nice job!
  12. I have good experiences with sendy.co... I use the api to subscribe users & email creation goes automatic for one site I did... I'm pretty happy with the result... BTW sendy 2.x has a template option now, which is a big step forward.
  13. Personally I'm not using the SEO module, I set it up in my _init.php, and when using URL Segments I add it in my templates. Correct me if I'm wrong, but using URLSegments you actually have to edit the template, since it's not an actual page and doesn't have a title and/or meta_descriptions can't you create some default fall-back when URL Segments are used? Then in the template itself: SeoModule->fallback_string(__('%1$s is part of %2$s and contains %3$s subpages'),$URLSegment1, $page->parent->title, count($page->children)); or as matter as fact any default outcome when a $page->name/$page->core.title doesn't exist at all...? BTW above "code" is just fiction, but I guess you know where I'm going... Now we're at it, URL Segments aren't included in the current sitmap xml module either, which is not ideal on a SEO point of view.
  14. Hi, in my case I wasn't really concerned about the UI interface... more on how to integrate... Should I use repeaters [or pageTables - maybe better?] and edit the movie + adding dates/hours when the movie is played or create a page [eg. program], add each day and then select the movie [in this case pageTables is probably advised]. Nevertheless, I'm really interested on how this topic will grow.... Greetings...
  15. I did have the same thing, seems my upload picture had the same width as set in max-upload... coincidence... maybe but changing max upload solved my upload problem... [using 2.5.10].
  16. Very NIce... Good Zurb Foundation use... just a pitty there's no Opera < 15, or other older browsers, fall-back [this has nothing to do with your design of course].
  17. I had the same warning with the thumbnails module... Fieldtype: Images with cropping 1.0.3 Inputfield: Images with cropping 1.0.1 The simple fix for me was to change the template. Tab basics: type -> CropImage Tab Details: Inputfield Type -> CropImage [all at the bottom] In details mine was 'image'. Hope this helps...
  18. Really? I have a template called 'options' but I can't find that in the 'advanced' tab [using 2.5.1 dev]
  19. Hello, is it wise to install Soma's or Apeisa's version on pw 2.5.x? Thanks
  20. Oops... sorry.... I've heard/seen a lot of buzzing about the PageTables [and extended] but I haven't found the time to try it out... Soon... so don't worry about it... it's fine...
  21. on a side note... if you're using zurb foundation, a similar solution is build in http://foundation.zurb.com/docs/components/clearing.html Personally I'm still fond of PrettyPhoto. - V.
  22. This IS weird LOL could be the 'big' image stretched something so it seemed everything was OK... so the $page->main_image has a limit [1]?
  23. Actually me too I have a feeling, like this was addressed before: open div [or similar] somewhere
  24. so, if I understand correctly, something like this you'd like to have in your page/sub-page: http://www.forul.be/zurb/ ? btw you're right, click_on_true is default...
×
×
  • Create New...