Firstly thanks for the great work on panels 2, its a really cool module now ! :)

I have a node view panel which of course has its own arguments and i want to include a few views using these arguments inside the panel.

Using the send arguments option works fine, same for override it works as expected.

However if the view has some argument handling code it doesn't seem to fire at all. Some of my views have some complex arguments and i'd like to be able to use this code if possible.

Is this something thats known? Any chance of it being resolved?

Many Thanks

Ben

Comments

smoothify’s picture

Version: 6.x-2.x-dev » 5.x-2.0-alpha11

just correcting the version

merlinofchaos’s picture

Status: Active » Fixed

Note that if you have argument handling code, but you don't have views arguments defined, then chances are the query is cached because Views doesn't think the query will ever change.

You can alleviate this by entering:

  $views->is_cacheable = FALSE;

at the top of your PHP Argument code block.

Does this fix your problem? If not, re-open this issue.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.