Jump to content

nfil

Members
  • Posts

    138
  • Joined

  • Last visited

Everything posted by nfil

  1. yes it is enabled! Thank you dimitrios I will try again later.
  2. I was reading a thread about Structured Data, is it possible to use this module to generate the AggregateRating? See MarcoPLY example. Thank you.
  3. Looking forward to the alpha version of Padloper
  4. I don't think that is possible because the FB app was created this week.
  5. thank you dimitrios. Sorry but I followed all the steps, yet nothing happens when I save the page in PW. Did not see where you change this on Settings -> Advanced, set the API version to 2.10,
  6. where do you find this ? thanks on Settings -> Advanced, set the API version to 2.10, add Product: Facebook Login, on Facebook Login -> Settings, set Client OAuth Login: Yes, set Web OAuth Login: Yes, set Enforce HTTPS: Yes, add "http://www.example.com/processwire/page/" to field Valid OAuth Redirect URIs. 
  7. nfil

    SeoMaestro

    thanks dragan! The server was running an older PHP version.
  8. nfil

    SeoMaestro

    I added this module to my site to test it. I see this error: Parse Error: syntax error, unexpected '?' (line 49 of /home/desert1/public_html/mytest/site/modules/SeoMaestro-master/InputfieldSeoMaestro.module.php) PW lastest DEV release. Thanks
  9. hi everybody! How do I limit the pagination numbers, just need 3 between the previous and next buttons? thank you.
  10. This is my Tree View: == Home == List ----- blog-post (has two page reference fields "categories" and "categories_a") ----- blog-post 1 == categories (List categories and latest blog-post title *) ----- category ----- my other category == categories-a ----- category-a ----- my other category a $categories = $page->children; foreach($categories as $category) { $posts = $pages->find("template=blog-post, categories=$category, limit=1, sort=-date"); foreach($posts as $post) { echo $category->title; echo $post->title; } } * Want to show the latest post for each category in the categories page. Not sure what I am doing wrong to retrieve latest posts. I changed it to this and its working now! $posts = $pages->find("template=blog-post, categories_select=$category, limit=1, sort=-date"); foreach($posts as $post) { $fimg = $post->featured_image; $thumb = $fimg->width(200); echo "<h4>Latest entry</h4>"; echo "<img width='200' src='$thumb->url' alt='$post->title'/>"; echo "<p>$post->title</p>"; }
  11. this is a good introduction to markup regions! I found it very useful: https://github.com/ryancramerdesign/regular
  12. After a few tests, I added a new category to the blog post. I created 2 templates for the new category: categories_a.php <?php namespace ProcessWire; ?> <div class='uk-child-width-1-2@s uk-child-width-1-3@m uk-grid-match uk-margin-large-bottom' pw-append='content' uk-grid> <?php foreach(page()->children as $category_a): ?> <a class='uk-link-reset' href='<?=$category_a->url?>'> <div class='uk-card uk-card-default uk-card-hover uk-card-body'> <h3 class='uk-card-title uk-margin-remove'><?=$category_a->title?></h3> <span class='uk-text-muted'><?=$category_a->numPosts(true)?></span> </div> </a> <?php endforeach; ?> </div> <aside id='sidebar'> <?=ukNav(pages()->get('/blog/')->children('limit=3'), [ 'header' => 'Recent posts' ])?> </aside> category_a.php <?php namespace ProcessWire; ?> <div id='content'> <?php echo ukHeading1(page()->title, 'divider'); $posts = pages()->get('/blog/')->children("categories_a=$page, limit=10"); echo ukBlogPosts($posts); ?> </div> <aside id='sidebar'> <?php $categories_a = page()->parent->children(); echo ukNav($categories_a); ?> </aside> _main.php (Add new category to the navbar) <?=ukNavbarNav($home->and($home->children), [ 'dropdown' => [ 'basic-page', 'categories', 'categories_a' ] ])?> ready.php added a new hook for the categories_a category_a templates. Thats it. Thanks for the great Uikit theme.
  13. Did anyone try to add another template for different "categories". I added the "categories_a" and "category_a" is the child template. This new category is also a "page reference" field. If anyone did a similar test, what did you change in "_uikit.php" and other files "ready.php".
  14. Hello. I have 3 templates: category sub-category partner I can output the template "partner" from a sub-category! But if there arent't 3 partners in that sub-catgory I want to get the others from the parent category template. Thank you $morep = $page->parent->children("template=partner, id!=$page->id, limit=3, sort=random"); foreach($morep as $a) { $firstimage = $a->images->first(); $thumb = $firstimage->size(400, 200); echo "<li class='item'> <div class='img_box'> <a href='$a->url' title='$a->title'> <img src='$thumb->url' alt='$a->title' width="400" height="200"> </a> </div> <div class='featured_title_postcustom'> <div class='caption_inner'> <a href='$a->url'><h4>$a->title</h4></a> <div class='post_date {$a->parent->parent->style_color}'><em> <a href='$a->url' title='$a->title'> {$a->parent->parent->title} {$a->parent->title} </a></em></div> </div> </div> </li>"; } -- My sitemap Pages Templates -- Category -sub-category -partner Category -sub-category -partner
  15. nfil

    Leitz Medien

    Congrats! Really creative! Love the animations.
  16. That is a super idea Kongondo! I hope you find the time to do it. Padloper is great, but like Ryan, is taking time to develop the new PW themes. If there were premium modules, a default theme, a customer area, that would probably boost padlopers sales.
  17. Congrats! but the main nav bar looks a bit weird in Safari.
  18. If you want to translate those fields try to put this: /wire/modules/Process/ProcessPageList/ProcessPageListRender.php in the </> Enter file to translate
  19. hello and congrats. I was testing this module and get a syntax error on line 40 (path to templates )of the MarkupPlyrMediaPlayer.module keep up the good work.
  20. thanks kixe and adrian! While creating the site, as a superuser I always use this module, http://modules.processwire.com/modules/process-batcher/ Congrats Adrian!! that one looks great too and makes sense for the editor role and batch delete. I haven't tried the cronjobEmptyTrash module, always try to keep the modules to a minimum but I will certainly have a look at that one too. thanks!
  21. Yes it makes sense! A client that wants a quick way to delete pages asked if this would be possible but sometimes a wrong click and no access to trash can cause panic. I was also thinking about lister or listerPro to batch delete the pages and thanks for the hook suggestion. Thanks for all the answers.
  22. Hello. I installed pWire 2.6.16 and after giving permission for the editor role to delete pages, also his role has access to edit the template but the trash icon won't show next to the page. It will only display the trash icon for super users. https://processwire.com/blog/posts/extra-action-in-your-page-list-processwire-core-updates-2.6.5/ Thanks for the help.
  23. For the pdf-invoice you could try this great module from wanze: http://modules.processwire.com/modules/pages2-pdf/
×
×
  • Create New...