Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/15/2015 in all areas

  1. http://losrenegadoscomic.com/comic/capitulo-1/cover/ A comic website made for a friend, I tried to make it work like manga sites (like this or this) I don't really know if this is "nice" enough to put in Showcase but it was really really fun to do, and I did it like in 5 hours which just seemed like record time for my noob standards (and I got stuck learning how to check NullPage, but totally worth it). The comic is on going so my friend will be updating. He learned the admin like it wasn't even there : ) I used the fantastic Jumplinks for simple redirection from root to the first chapter subpage and MarkupSocialShareButton for the nice sharing buttons below the comic pages, thanks to the respective authors, you people are great. This is my first time actually building something more complex than the average "hello we are __insertcompany___" site so I am quite feeling the hype. Improvements I think would be nice: "show larger image" button for page spreads. a kind of thing that remembers where you left of if you have already visited the site, I can sometimes forget where I left off, maybe a cookie? Would it be worth it to build something like this into a module?? Like, somewhere you can create volumes, books (or how you want to call it) and then add subdivision in the same fashion as previously, until you reach a type of data that is a list of pages that represent the images. Am I being delusional and thinking the wrong way about a module solving a big task like a comic book manager? Jus when reading again my idea it sounded kind of "Wordpressy way of plugins" Any opinion is appreciated as this is totally on-going and a kind of "for fun" project.
    4 points
  2. It's out of choice I believe. That website's votes can be easily rigged and they hadn't done anything about it last time this was checked (which was a while ago). I think it's still the case as numbers of votes on pages like this seem quite high for some less well known CMS': http://www.opensourcecms.com/scripts/show.php?catid=all&category=All+CMS+Demos Without naming names, there is one script on there with 3/4 the votes of Drupal but whose forum has just a few dozen members. That seems a little fishy to me. Plus Wordpress on page 2 just going by number of votes? Seems unusually low for what is, without question, the most widely-used CMS on the planet.
    3 points
  3. At least the design is top notch Why are you looking elsewhere? Looking for challenges?
    2 points
  4. don't want to blame other systems as they are all doing great work. but i'm just happy that i found processwire and do not get such welcome screens any more i tried the demo here: http://www.opensourcecms.com/scripts/details.php?scriptid=191&name=Drupal seems that processwire is not listed there...
    1 point
  5. Couple of things spring to mind. 1. Are you actually publishing the pages as well as saving them - by default saved pages are set to be unpublished --- if the page is set to unpublished then even though it exists you will not be able to see it via a url. Easiest way to check is look in the pages tree, the page title should show as bold text -- if it has a line through it but it is bold then that's fine, it just means you've not checked the box to have the page appear in menus and/or searches. 2.Have you checked in the templates directory that there is a php file with the same name as the template your page is using. If this php file is not present then the page will not display. Hope that helps
    1 point
  6. Votes are in, and nearly unanimous: The module will be renamed to RockettForms when I get back into it. (Unable to commit enough time at the moment, but will get there.) Also, I plan to make this a 2.7-only module. If you think I should drop that to 2.6.1, let me know.
    1 point
  7. Looks pretty cool indeed. And glad you're using Jumplinks. I think the only suggestion I have at the moment is to improve the UI controls. At the moment, the select boxes are native, so they kinda look out of place due to the darkness of the site. Perhaps using a dark Chosen or Select2 skin would help on that front. I'm also sure it's possible to make the Facebook comments plugin dark. Not sure though - only ever did it with the old version.
    1 point
  8. Hi Mike, I think the checkbox would be a great addition. This would make it easier for a newbie to Jumplinks be able to just dive in and get things done. I am for this update!
    1 point
  9. just completed and updated the function in the post above.
    1 point
  10. The site profile you are using has delayed output (on mobile search for that keyword) You need to put all the slider markup in the variable $content instead of echoing it: $content = $slider->render...
    1 point
  11. Olá a todos, I've been updating the translation for a project (22 files in processwire 2.6.14. There is more files to come but main ones are there). I thought it could help someone. How can I share this translation with the comunity?
    1 point
  12. I did try this and it did not work, because getById returns a PageArray, not a Page object in spite of the get part in the method name. Using something like first() on the returned result seems to give you the cashed (changed) version of the page. But there is a getOne option that managed to do the trick. So I could only get it to work like this: $oldPage = $this->wire('pages')->getById($page->id, array( 'cache' => false, // don't let it write to cache 'getFromCache' => false, // don't let it read from cache 'getOne' => true, // return a Page instead of a PageArray ));
    1 point
  13. Nice work @Mike Rockett ! I am using my own FormBuilder generally, a config file based form builder Six months ago i created a git repo uploaded files but can't finalize it. If you interest and want to check it maybe you can use some useful things : https://github.com/trk/AvbFormBuilder It has a validation library and google re-captcha support. Some of features : - Form generation - Mail send - Validation - Re-captcha support - Template support for custom input elements - etc.. Its working on my side but need to make it better.
    1 point
  14. Thank you Kongondo & @Valan for this great little helper! For me as a non real dev...it is much more easy to get some special admin magic working with this! This is one of the real big things i like with PW - there are tools that helps and can used by non experienced PHP users without to force them to do risky things within the backend...in other systems the level of complexity always grows and grows...with PW it seems it always get easier I'm on a hard deadline this days so less time to contribute but this little snippet may helps others - easy to use and very helpful. It works as a kind of shortcut navigation to prev next siblings - like Kongondo showed off in his video to the notorious V.P.S. I saw the raw links and thought hey i've a version of this running with UI buttons so here we go: $out =''; $siblings = $page->siblings; //generate next & prev links output if (count($siblings)) { $prev = $siblings->getPrev($page); if ($prev) { $out .= '<a href="'.$prev->editUrl.'">'; $out .= '<button type="button" name="button" class="ui-button ui-widget ui-corner-all ui-state-default">'; $out .= '<span class="ui-button-text"><i class="fa fa-angle-double-left"></i> '.$prev->title.'</span></button>'; $out .= '</a>'; } $next = $siblings->getNext($page); if ($next) { $out .= '<a href="'.$next->editUrl.'">'; $out .= '<button type="button" name="button" class="ui-button ui-widget ui-corner-all ui-state-default">'; $out .= '<span class="ui-button-text">'.$next->title.' <i class="fa fa-angle-double-right"></i></span></button>'; $out .= '</a>'; } if ($out <> "") $out = "<div class='NextPrevLinks'>".$out."</div>"; return "<div class='NextPrevLinks'>".$out."</div>"; } Output of the field is: Have fun and best regards mr-fan
    1 point
  15. Hi Soma, I totally agree with you. Currently, It is possible to use absolute paths using the $config->scripts and $config->styles arrays (see: https://github.com/conclurer/ProcessWire-AIOM-All-In-One-Minify/issues/20). We are planning to change the behavior of AIOM in AIOM 4. Thanks in advance! Marvin
    1 point
  16. Please make it a possible for absolute path from root. That traversal back with ../../ is not very convenient at all. I have a fork I'm using ever since where I changed it to allow for files outside templates folder using root path. It's an assumption that shouldnt be made in th first place. The hx
    1 point
×
×
  • Create New...