Skip Navigation

[Gelöst] Parent > child filtered loops in Bricks Part 3

This support ticket is created vor 6 Monaten. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Heute stehen keine Supporter zur Arbeit im Werkzeugsatz-Forum zur Verfügung. Sie können gern Tickets erstellen, die wir bearbeiten werden, sobald wir online sind. Vielen Dank für Ihr Verständnis.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

Dieses Thema enthält 8 Antworten, hat 2 Stimmen.

Zuletzt aktualisiert von Nigel vor 5 Monaten, 3 Wochen.

Assistiert von: Nigel.

Author
Artikel
#2696380
Grid-of-Prints.jpg

I posting this here as an update on progress. It may be usegul for others.

The best solution so far is achieved with the following Bricks Lab tutorial:

versteckter Link

You will need to use something like WP Snippets to set this up. This will create a listing for the query results in Bricks Loop Editor

To acieve the results I was lokking for, all the print post related to a year I used the following args setup:

$args = [
'post_type' => 'print',
'orderby' => 'desc',
'posts_per_page' => '-1',
'suppress_filters' => true,
'toolset_relationships' => array(
'role' => 'child',
'related_to' => get_the_ID(),
'relationship' => 'print-year_print',
)
];

This is based on the following Toolset documentation.

NOTE: I had to add 'suppress_filters' => true, to get this to work, otherwise Bricks outputs Error: error and doesn't render anything in the builder itself. It will render the correct result on the fornt end. The only problem with 'suppress_filters' => true, is that while it does render in the backend, it will load every instance of the post type in the back end. That was a lot in my case with 216 prints to look at. The solution here, if you need to do any extra layout work, beyond the archive view is to set suppress filters to false and just ignore the Error: error message.

Attached the result which very much matches what's on my live site.

There are a few more loop scenarios I need to check, but that's for another day.

If anyone has any insights into wasy to deal with the Error: error messgae, it woulf be much appreciated.

#2696555

Nigel
Supporter

Sprachen: Englisch (English ) Spanisch (Español )

Zeitzone: Europe/London (GMT+00:00)

Hi Stephen

Without knowing Bricks very well I can't say why the error might be occurring on the back end.

Rather than having to modify the query arguments to include or not include the suppress_filters argument, and dealing with errors or a large number of posts, can you set up your custom query such that it will work on the front end, and then while editing in the back end temporarily change to a standard Bricks query for your post type and set a limit of 10 or whatever is appropriate.

Then when you are done editing, switch back to select your custom query.

#2696713

Thanks Nigel, great suggestion. A little more sanity returned as I venture through the optimal solution of being able to run and style queries directly in Bricks. I also figured out how to refactor all this down to just returning the args in Bricks's new PHP query Loop Editor. So no need for the more comples set up as per the Bricks Lab's longer solution.

I suggestd to your colleages, in earlier versions of this ticket, that there would be merit in Toolset running a series of tutorial posts expaling how all these complex queries in via php woulf benefit in promoting Toolset, which is very powerful compared to the other CPT/Custum filed offerings out there. It's like Toolset is hiding its light under a bushel and I think the documentation, now under the legacy category, should be updated to expose what can be done for developers who won't necessarily be using the block edirtor.

#2696786
Screenshot 2024-05-09 at 3.12.15 p.m..jpg

Just a bit more info on this.

I checked the server logs and it didn't report anything but when I activate Query monitor it reports deprications on Toolset Blocks. They may not have any bearing on this exact problem but I attach a screenshot in any event.

In the changelog for the latest version of TS Blocks it states that deprication warnings have been fixed?

The site is running on PHP 8.1.28. Might I need to switch to a differnt version?

#2697000

Nigel
Supporter

Sprachen: Englisch (English ) Spanisch (Español )

Zeitzone: Europe/London (GMT+00:00)

Some deprecation notices we discover through scans and automated testing, others only surface in real-world uses and we fix them as we learn about them.

If you are seeing those with the latest updates installed then it looks like new ones we haven't come across before.

What is the context for when they appear?

Am I right in understanding they only appear in Query Monitor, not the debug log?

That's odd. Query Monitor is running code, so it's not inconceivable that it is implicated. In any case, they are innocuous, they won't have any functional effect for now.

Could I ask you to share the text of the messages? It's inaccessible in the images.

#2697029

Hi Nigel,

I have done a thorough collection of info from two sites and saved it all in text files. Can you enable the secure upload option?

The two sites:

My own personal site Vaughanprint built with Divi.

Remco de Fouw's site which I am currently building with Bricks.

I have included the query monitor readouts from both and the debug info for both sites, with Query monitot activated and deactivated.

#2697030

Nigel
Supporter

Sprachen: Englisch (English ) Spanisch (Español )

Zeitzone: Europe/London (GMT+00:00)

If you are sharing text files you can just post a link to dropbox, wetransfer or similar. Such links are automatically hidden from other users.

Thanks for going to the trouble.

#2697031

Thanks Nigel:

Here is a Dropbox link to a folder with the two files:

versteckter Link

#2697791

Nigel
Supporter

Sprachen: Englisch (English ) Spanisch (Español )

Zeitzone: Europe/London (GMT+00:00)

Thanks for that.

I've had time now to report those internally to the developers and added them to the current sprint.

A reminder that as deprecation notices they don't affect anything at the moment (they are a warning that they might in future versions of PHP).

#2697802

Thanks Nigel,

Much appreciated.

Just so you know, I've made some great strides in the last week with resolving the build of query loops directily in Bricks builder using the PHP editor that they offer there. I managed to get a related brother view, sans the current child post currently viewed. Using this. The trick is to first query in the parent and then run the related query in anouther loop nestred within.

It would be great if betweeen Toolset and Bricks some of the errors could be removed and also see some more documentation and post on the configurations that work.