Jump to content

bwakad

Members
  • Posts

    450
  • Joined

  • Last visited

About bwakad

  • Birthday 04/08/1968

Profile Information

  • Gender
    Male
  • Location
    Netherlands
  • Interests
    PHP, SQL, CSS, LAW.
    Working locally on several host folders : Xampp | PW 2.5

Recent Profile Visitors

3,875 profile views

bwakad's Achievements

Sr. Member

Sr. Member (5/6)

96

Reputation

13

Community Answers

  1. Great! you was right, needed some sleep. lol After the copy css/js it's good. I then disabled all append and prepend for blog templates. Because: PW latest use _main to output header/body/footer; and blog uses blog-main.inc to output header/body/footer. Kongondo, can you tell me which file is used in back end for the /blog/posts/ - /blog/categories/ - /blog/tags/ It seems in the Edit part is this code displayed as text (image I showed earlier).
  2. Reading instructions wrong I guess. Did a new install. Placed the Blog Master folder in modules and installed with demo template files. But this time css and js is off - I can't see css and js under /site/templates/, I CAN find them under /modules/Blog-master/. Am I installing wrong? or should I disgard multi language?
  3. Hi thanks for the reply. 1A. I installed the latest stable PW and choose multi-language. This is were the header/footer come from (_main / _init). 1B. I then installed your blog module which gave me the empty template files. The blog templates give me blog posts or categories (whatever I put there) and under it: header - content / sidebar - footer. I have seen native PW currently prepend and append the _init / _main to ALL templates - which is fine. But I am not sure how to proceed. _main works with this part, should I add $posts in there? <div id='main'> <!-- main content --> <div id='content'> <h1><?php echo $title; ?></h1> <?php echo $content; ?> </div> <!-- sidebar content --> <?php if($sidebar): ?> <div id='sidebar'> <?php echo $sidebar; ?> </div> <?php endif; ?> </div> 2. The image with the back end issue is in the blog dashboard (posts/categories/tags). It does no damage, but it's just strange. Must be a comma or something in the admin tempate files somewere.
  4. Also had some issues with back end markup...
  5. Just installed Kongondo blog module in PW multilanguage. Great concept! I Just have a small question regarding empty template files. If I would like to display posts under a current category (blog_category) I could go with this: $posts = $pages->find("template=blog-post, blog_categories={$page}"); $blog = $modules->get("MarkupBlog"); //if Blog Posts found, we render them out if ($posts) { echo $blog->renderPosts($posts); } else { echo '<p>No posts found</p>'; } But the haeder and footer are displayed UNDER the post. How do I get posts to be between this?
  6. I have tried both from Soma and Diogo - not working. In this case, they both should reflect "/browse/". Using static works, dynamic not. Strange. I just used $page->parent->children - not working either... But since I do not want to restrict myself only to /browse/ I thought to use page parent. So this static path is working. <?php $navigation = $pages->find("parent=/browse/");?> $page->prev($navigation)->url - EDIT - stupid!!! I forgot, in my old code - I used echo strings : echo "<div><a href='$page->prev($navigation)->url'>Link here</a></div>"; This time I used <a href="<php $page->prev($navigation)->url;?>" (without echo)... Sorry all, thought suddenly something was wrong with my PW.
  7. Just trying something for the prev next functions but I really do not understand, this first one not giving anything contrary to second one. While $page->parent is really a /path/. I have tried without ->name, without qoutes, placed $variable as concatenated outside of qoutes... Nothing seem to do it. Must be loosing my mind. lol <?php $navigation = $pages->find("parent=/{$page->parent->name}/");?> <?php $navigation = $pages->find("parent=/browse/");?> Basically I want the current page parent children as array (siblings). Only on rootparent = home I could not do that (because no parent)...
  8. I get what you say - building blocks. It's also easy and the reason I use it. Basic and to be changed when we need. I have not really changed that much, just changed some things for small mobile sizes and don't use what takes to long. Had trouble with sized PW images shrinked by foundation... I really liked the off canvas - especially the concept Facebook (among others) is using. It's apealling to the eye. Was reading on the off canvas concept and I found out, that content is loaded lazy and placed into focus when needed. It's actually a litle faster then requesting single pages because it is not nescesarry to download header and footer again. Downside is that one has to load yet another jquery for that. Now I try to focus on tabs were tab content slide in with css only (works about the same as off canvas) but is so much more fast. Just have not found a good tutorial on that. codrops has some nice examples...
  9. I just see on PHP that checking on ->id is integer (martijn said that to) while I used =>id =, == and === "0". I now understand why it did not work... This one tumbled me: // the easiest way…if(!$page->id) { // $page is a NullPage} I used it so I could display something else, but I forgot the ->id... which makes it an object, and I did not know how to check an object. So my best bet is either if(!$page->prev($browse)->id) { OR if($page->prev($browse)->id == false ) {
  10. well, thanks all, for helping on this one - I will set my mind to 0 Null or blanc page (NullPage) and try to read from the link...
  11. So, if I want to evaluate if there is none - which one is the best to use... I prefer your example of == false, but is this always accurate with regards to a NullPage ? if($page->prev($browse)->id == false ) { // display somthing else } or if(!$page->prev($browse)->id === true ) { // which is rather confusing // display somthing else } or if(!$page->prev($browse)->id ) { // display somthing else }
  12. you all want to confuse me Lostkobrakai - is right when he say is not 0 but NULL. But checking for that did not solve it. Martijn - is right when $nullpage = new NullPage, hence id = 0 Teppo is right when he say NullPage is not Null. but NOW I don't know anymore!!!
  13. Maybe I do not get what you say, but from what I do understand from the pageArray (limited amount of pages) >>> $browse = $pages->find("parent=/browse/") - the next code would produce a NullPage if there is no previous, there would be none (no id), because I used === "0" == "0" and = "0" ... and it did not work. if(!$page->prev($browse)->id ) {
  14. While developing in PW I use foundation. Mostly because it's easier to read. but i really doubt if they ever succeed in making all what they promote work smoothly: equalizer - does not work on all elements. buttons - configured paddings and font-size are really bad. panels - only work good on <p> tags. dropdowns - does not adapt itself on small screens right away. Worse is it pushes content down. font icons - are very limited to what someone would really need. off canvas - does not go full width and height - unless you hack deep. block grids or columns work well - unless you specify a ->size(x,y) in pw... had to set min- and max on css sizing... Abide - used it, but not anymore. It was looking bad making rows expand on focus or error. so many issues... I now basically use it for the rows and columns, and if needed set small medium or large. Remove most of the padding and margin on small sized rows and columns and set those in css myself. Buttons and tags I make them myself through css. At least it's easier to control padding, margin and font-size. I use font awesome for icons - it seemed they have everything you need and look even better. I am pretty sure bootstrap has issues to. And I am curious to see how people develop with those two. ps. I am really happy with Processwire! It can do almost everything if you really sit down for it. I guess Ryan's next PW implemantation will be: GetMeaBeer() . lol
  15. thats what I said: if NOT id then NullPage = true lol. if false = true then false = false, but if true = true then true = true.
×
×
  • Create New...