Jump to content

elabx

Members
  • Posts

    1,479
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by elabx

  1. You should be posting them around here (Question:How does Processwire compare to Wordpress?) I am also writing an answer on Quora and boy it is difficult to not sound too opinionated. Wow, you have had yourself in this project for a long time, congratulations on reaching the final stages, I'll join the eager wait list!
  2. RT @vestenet: The public has spoken: they like moms from JoJo's

  3. Hi! Indeed it solved the Markdown issue! Though the newline characters are still messing with me, for example, in the Markdown lists that actually need the line break to format correctly. I thought it had something to do with my editor, but I just tried exporting/importing the same file and it doesn´t work. I mean, Excel or Numbers read the file just fine, so I am guessing there might me something off on how the module parses back the file?.. Just throwing rocks at the problem here Proof that I'm not going mad haha: http://imgur.com/FjfAXha Somehow I feel this will steer into something to do with encodings, a topic in which unfortunately I'm not very knowledgeable. Sorry if this is getting a bit off topic! Thanks for your help!
  4. Hi! This is an awesome module! Just something happened to me right now, I was exporting/reimporting pages through CSV, and didn't notice that I had some fields using markdown, so when exporting it was the actual HTML formatting that was exported, so when importing back, things didn't make sense. I don't know if there should be "Respect markdown field" or something in the export settings. Maybe I'm just being nitpicky but thought I could just comment the case here. Also, I think this might be due to my CSV editor, but when importing the edited CSV, I had issues with line breaks in HTML, am I doing something wrong here? Because the initially exported CSV from the module, imported just fine inside the editor (Numbers) even with the line breaks in the HTML, but when importing back everything got messy Then again, thanks a bunch! I was looking for a "batch pages fields editor" and found this module to be very useful to edit a bunch of Youtube links, from a bunch of pages.
  5. RT @erina_mano: #特車二課整備班採用試験ツアー このタグを見るのがすごく楽しい!!またみんなに会いたいなぁー。二課棟でバスケしたいなぁー。ヴェスパに乗りたいなぁー。イングラムに乗りたいな!! https://t.co/5hYmAgYywh

  6. This is going to be VERY educational, thanks for the amazing work!
  7. I kind of had this problem, and solve it using a "NOT" selector when retrieving the array. https://processwire.com/talk/topic/12798-remove-multiple-items-from-pagearray/ Though I know this is not exactly what you are asking since it's not dealing exactly with the array, but thought it could help.
  8. http://modules.processwire.com/modules/markup-twitter-feed/ This module works fine, though you will have to generate the markup to achieve the "looks" of the Wordpress plugin you are puttin as example. Although, thanks to Processwire, nothing will get in your way to accomplish this Check this part of the module documentation: You might also want to to take a look at: https://dev.twitter.com/overview/api/tweets To know how the tweet objects are organized in the array returned by the module. (take a look at how $item variable is accesed when echoing the string)
  9. Actually this was all I had in mind I guess it could be the same as just having a site profile for yourself? Though one simple json file seems very convenient.
  10. Hi! I installed directly from Processwire. I was actually talking about this line: https://github.com/outflux3/PrevNextTabs/blob/master/PrevNextTabs.module#L84 My guess is it returns false because if hidden without the "include=all" selector it won't find any pages.
  11. Is this for your InputfieldChosenSelect module? I've been using it a lot and found myself wishing for fuzzy matching.
  12. Then I request a kongondo module release subforum!
  13. Hi Macrura! Thanks for this module! It's very cool! It really enhances using pages as a "data container". Though, I just tried selecting a template that contains hidden pages and it didn't seem to work. EDIT: I added "include=all" where you check for siblings of the page and it worked. My guess is that it should work even if pages are hidden? Thanks again!
  14. RT @processwire: New post: Composer, Google, Calendars & ProcessWire: Using Composer with PW 3.0.11, Google Client API & more– https://t.co…

  15. So, in the near future it will be possible to have a composer.json file that allows to bootstrap Processwire with all the extra module awesomeness?
  16. Thanks! I didn't out that just outputting the field as it is returned a string of the pages IDs divided by pipes. Very educational! It ended up looking like this, no need for not() $selector ="sort=title,template=featured-service|caso-exito, start=" . (int)$input->post->pagination . ", limit=6, id!=" . $page->featured_product_link;
  17. I am pulling content through ajax to display a grid of images, but, the initial set of images that load when starting the site are selectable through a page field. (Each grid item is a page that works only as container). So, in my $config->ajax I have something like this: $selector ='sort=title,template=featured-service|caso-exito, start=' . (int)$input->post->pagination . ', limit=6'; $ajaxProducts = $pages->find($selector); Now, is there a way I can filter with not() PageArray method using data from said page field??
  18. Looks very nice! Love the drawings over the lines. That´s also my strategy to output one page sites, iterate children and just $page->render($params), what a bliss! Just a doubt, how do you handle the "/home/children" url path? I mean, even if there is now link to that actual url, is it recommended to remove it or redirect to home with a kind of auto scroll to the section?
  19. RT @ThePracticalDev: The last programming book you'll ever need https://t.co/cnObD8GYGZ

  20. I have the vague impression that database migrations are better supported in other types of frameworks/languages (Rails/Ruby)? Or is Processwire simply not intended to have this type of implementation? Or am I misinterpreting something here? I can only guess from my experience, that database sync is not trivial. It just sparks my curiosity that currently there are two threads asking about this, and also have read about a lot of people rather using static CMS due the "databaseless" way these apps work.
  21. RT @miblogestublog: Arrogant, ignorant people shouldn't be presidents, says arrogant, ignorant former president https://t.co/G3N0Io5m69 htt…

  22. Agree, the API is unbeatable. I haven't tried every CMS but at least the ones I have tried, everytime it was time for "Hey Mr.CMS, could you please get me this content from over there?". Either there was no clear answer or a solution that wasn't really up to my liking. For example, in Perch, there is perch_custom_content that returns an array with the data which I instantly started hating. Call me lazy, I just don't like how you have to iterate over array within array. You could imagine my shock when I saw Page and PageArray objects working with chained methods and the beautiful one liners you can do with PW. The closest I have experienced to PW somewhere else is with Kirby's own $pages and $page variables that also work much like PW's I think. But, what eventually moved me away from Kirby was discovering PW page and its page tree that just looked like the answer to all my data organization/displaying/retrieving problems. Had never really though about this. My first site with Processwire had to had an ajax and cached Instagram feed. It was implemented horribly, with the libraries in template dir and a php file for ajax right outside site folder, but IT JUST WORKED. No new things to learn, no weird tricks, just plain PHP working as it is intended. I think that's very helpful for people still in the process of learning backend techonolgies, but that can be proficient doing the front end. In Perch they also have a kind of template tags, which I was never really convinced of using.
  23. The only thing I have found in the forums is this post comparing Perch and Processwire. Though from that list we can tick live preview/drafts Edit: Also found this topics with interesting discussions regarding Perch and other CMSs. https://processwire.com/talk/topic/2936-processwire-v-perch/ https://processwire.com/talk/topic/1433-if-you-had-to-use-another-system https://processwire.com/talk/topic/2554-other-cmss I would add that my opinion about Perch in particular goes along with the line of thought in this post:
  24. Great update! I love the modal edit, it is just such a great addition!! Makes using the tree view really smooth!
×
×
  • Create New...