Jump to content

Bacelo

Members
  • Posts

    46
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    North DE

Recent Profile Visitors

1,761 profile views

Bacelo's Achievements

Jr. Member

Jr. Member (3/6)

11

Reputation

  1. Thank you @MoritzLost ? If I got it right, named groups are actually more then a OR selector, because (in my case) both selectoras will work. So it's more like a OR-AND selector.
  2. Thank you. Yeah, that's what I did now, as I do understand the "named groups" now correctly... my code looks finally now: if ($standort == '') { $termine = $page->children("sort=date, limit=10, date=(date>=today, enddate=''), date=(enddate>=today)"); } else { $termine = $page->children("standort=(standort_reference~=$standort), standort=(standort_alle=1), date=(date>=today, enddate=''), date=(date!='', enddate>=today), sort=date, limit=10"); } So I grouped by 2x date() and 2x by standort(). Is that correct coded now? Just to know, that I did understand it right.
  3. I think I got it... It works now by the following: $termine = $page->children("standort=(standort_reference~=$standort), standort=(standort_alle=1), date=(date>=today, enddate=''), date=(date!='', enddate>=today), sort=date, limit=10"); At least It looks like the output is correct!?
  4. Thank you @MoritzLost for your reply ?. I had a look at the OR-groups before, but I don't get it. As I understand by now - as you mentioned, if one OR fits, the other selectors then don't matter. So, my logic is wrong... When I remove as mentioned the parenthesis for "standort_reference" and "standort_alle", I don't get any output anymore. ? Actually I need to filter "$termine" twice: -> standort_reference OR standort_alle (standort_reference~=$standort), (standort_alle=1) One of both above has to match - and additionally then -> filter for both (date>=today, enddate=''), (date!='', enddate>=today) get all single day entries where "date" is only in the future AND additionally also all multi day events which are still present running ("date" in past and "enddate" in the future). The part of "named groups" I do currently not understand how to get use of it in my part of code ?: foo=(selector1), bar=(selector2), foo=(selector3), bar=(selector4)
  5. Hi there, I have a bit of trouble on filtering correctly some event pages by some selectors... I do have the following 2 date fields: - start date (fieldname = date) - end date (fieldname = enddate) Some events are a single day event (only start date) - some are a multi day event (end date). Past single day events should not show up. Current multi day events should show up (even if start day is in the past, but end date is future). So I have the following selector: if ($standort == '') { $termine = $page->children("sort=date, limit=10, (date>=today, enddate=''), (enddate>=today)"); } else { $termine = $page->children( "(standort_reference~=$standort), (standort_alle=1), (date>=today, enddate=''), (enddate>=today), sort=date, limit=10"); } This selector $termine = $page->children("sort=date, limit=10, (date>=today, enddate=''), (enddate>=today)"); works fine, but the follwing does not work (all past entries are also shown): $termine = $page->children( "(standort_reference~=$standort), (standort_alle=1), (date>=today, enddate=''), (enddate>=today), sort=date, limit=10"); I have no clue what I'm missing - any ideas?
  6. Hi @montero4, thank you for your reply and and all your infos. SEO is not that relevant regarding the picture part / main gallery page on this project. Besides, I will handle the HTML document structure correctly. Maybe I will go with a detail picture page and have the possibility to do some SEO stuff there then (if needed). As with your site, I will also need to provide several public an internal infos for each picture and also a request pool for paintings via form. I was just thinking on the technical side, how to setup the structure the best way. So I started yesterday having the following structure now for the picure part in the backend: Home Pictures (for the masonry gallery with isotope filter, picture lightbox modal with infos ) Picture page 1 Picture page 2 etc. ... Topics (for Pictures) Topic 1 Topic 2 Topic 3 (which is actually both - topic 1 & 2) So I do have now an field called "topics" in my picture template as a "page reference" type (single page select) and radio button select. I can select now the topics and also the isotope filtering is working already. Regards
  7. Hi there ?, I'm currently working on a new site project and doing a bit hard on finding the right site construct... ? The site will be an artist page displaying paintings. Those paintings are categorized / assigned to 2 categories - either one or both On the home page there will be an intro showing the 3 categories (1 | both | 2) displayed with an image and title with a link to each category Framework: Bootstrap V4.4.1 Gallery page with isotope filter function by https://isotope.metafizzy.co/filtering.html Lazy load function as there will be 100+ up to 500 paintings... Let's say I do the following: Page pool "paintings" containing all paintings (each painting as a page) having some fields like "title", "picture", etc. and also a "category" field as a multiple selection via checkboxes "category 1" and "category 2") Home page showing as intro the 3 categories linked to the gallery page with a hashFilter URL So, do you think this could be the right way (or should I work f.e. with category pages and limit the output for each page with the amount of X or XY paintings)? I'm not sure if the page load even with lazyload could get too heavy as there will be more functionality showing text informations for each painting on modal. So it's maybe better to link then to each painting page and showing the infos there(?). Any ideas for a different construct? Cheers and many thanks in advance ?
  8. Hi there, I'm with @Neeraz - it would be great to have the possibility to also add a class to the link element (for what reason ever). Maybe @kongondo it is not a big deal for you to add that functionality to the module? That would be great ?. Have a nice Friday ?
  9. @Robin S you made my day ?! That works like a charm!!!?? I tried to combine that somehow, but didn't find the right way... (and also didn't find the right selectors ? as mentioned in your posted link). I thought, that this could be combined, but so I tried to go the other way as posted in my question. Perfect - many thanks for your help - learned again something new ??
  10. Thank you @elabx for your help, but unfortunately that didn't worked.
  11. Hi there, I need a little help of the community as I'm walking a bit in the dark at the moment...??? I have the following code and need to add some selectors to the merged array: $termine_1 = $page->children("standort_reference~=$standort"); $termine_2 = $page->children("standort_alle=1"); $termine = $termine_1->and($termine_2); I would like to add the following selectors to merged array $termine: ("sort=date, limit=10, date>=today") How can I achive this? ??
  12. Hello, I just added this module (on ProcessWire 2.8.62), but somehow it ony shows up on the config page of the module. I can't get it display at the front-end. Is there anything else then installing it? Hope someone can help me on this. Regards Bacelo
  13. Aaaah, didn't know that - thank you for your help!
  14. Hi @kongondo, thanks a lot for you answer PW upgrade to V 3.X is not an option currently, so how / where can I download Menu Builder V 0.2.1 ? Regards Bacelo
  15. Hello, does anybody know, if there is a possibility to only output a certain menu level or certain siblings in the menu? Like the begin of a start-level? F.e. start the output at level "sub": - parent item 1 - parent item 2 (don't output this) - - sub item 2.1 (only show / output this) - parent item 3 Currently used version is V 0.1.3 with ProcessWire 2.7.2 Regards Bacelo
×
×
  • Create New...