I added a node content from:
(/admin/panels/panel-page/portfolio/edit/content)
(Custom -> Node content)

but it have not show on my page.

D65 + panel 2

I do same thing on Drupal 5 and it works.

Comments

erik.summerfield’s picture

I have the same issue, tryed different content types, toggled teaser, display links and leave title alone,
all the same, no display (no html is generated)

melon’s picture

I am having this issue as well, subscribing.

Renee S’s picture

Is this possibly related to one of the issues I mentioned in http://drupal.org/node/324981? Certain kinds of content seem to muck up the Panel and trigger a save of a new did in the panel_display table (sometimes an empty row, sometimes full, always unpredictable).

erik.summerfield’s picture

Ok I think it has to with the whole input field (it uses one of those lookup input fields) getting saved to the conf nid field.

when the panel is getting rendered (panels_node_content_render) the $conf['nid'] is not a nid but instead a string like
"James Bond’s wrecked Aston Martin DBS bought for $350,000 [nid: 10]" ,so when we get to the code that checks to see if it is numeric it false and returns. when i add this code to the !is_numeric if statment
ereg("nid: ([0-9]*)",$nid, $regs);
if (!is_numeric($regs[1])) {
return;
}
else {
$nid=$regs[1];
}
then the nodes shows up correctly. (there is some other error with the foreach loop going through the panel_args)

I am thinking that the problem is most likely on the input side though, and i am thinking that the nid is not being parsed on input.

dtabach’s picture

Same issue here. Workaround: enter only the NID of the node instead of its title.

melon’s picture

Actually that doesn't work every time. After reconfiguration of my panel node some content disappeared. This happens both with node title defined or just the NID.

melon’s picture

Actually, I found that only the first node defined is displayed, the rest of the defined content is thrown away (in any pane)

merlinofchaos’s picture

Status: Active » Fixed

This should be fixed in the -dev version now.

Sownn’s picture

Still doesn't work on my side.
I test on Panels 6.x-2.x-dev (2008-Oct-30)

erik.summerfield’s picture

It now works (Panels 6.x-2.x-dev (2008-Oct-30) ) if you only enter the nid when setting up the node, but if you use the search function and leave the title, it fails.
This still appears to be because the nid is not being parsed out. If the following code replaces the !is_numeric($nid) code in
panels_node_content_render then it works. but again it seems to be that the nid should be parsed out on the pane submit.

  ereg("nid: ([0-9]*)",$nid, $regs);
  if (!is_numeric($regs[1])) {
    if (!is_numeric($nid)) {
      return;
    }
  }
  else {
    $nid=$regs[1];
  }
dtabach’s picture

Project: Nodes » Panels
Version: » 6.x-2.x-dev
Component: Issue » Panel pages
Assigned: » Unassigned
Category: task » bug

sorry, wrong issue...

dtabach’s picture

Project: Panels » Nodes
Version: 6.x-2.x-dev »
Component: Panel pages » Issue
Category: bug » task

reverting the issue to previous settings, but could not assign back to shujayat. sorry again...

fellow’s picture

I confirm this issue. 6.x-2.x-dev (2008-Oct-30) don't work for me.

summit’s picture

Subscribing, greetings, Martijn

design.er’s picture

Hi,

I had the same problem... the direct integration of content nodes is not possible.
After some playing and working around I found a way to add this content to the panels.

You have to create a view for the node you'd like to add to the panels and choose this view in the panel content as view page/block/feed (or what ever you have created).
It's really weird and time-consuming but it seems to work stable. So if you need a solution for a site that won't change its menu structure but only the content, this solution seems to work fine.

Sorry for my miserable english... nevertheless I hope you understood my explanation.

Regards
Stefan

sdrycroft’s picture

Project: Nodes » Drupal core
Version: » 7.x-dev
Component: Issue » field system

Definitely NOT related to the "nodes" project, the Version and Component fields are random!

merlinofchaos’s picture

Project: Drupal core » Panels
Version: 7.x-dev » 6.x-2.0-alpha2
Component: field system » Panel pages
Category: task » bug
Status: Active » Fixed

Ok, a spammer totally reconfigured this issue. SOmeone put it back...then changed their mind?

Putting this back to the original settings before the spammer hit it. Sheesh.

Status: Fixed » Closed (fixed)

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

design.er’s picture

Any news about this bug or actions to fix it?
I'm using Drupal 6.9 with Panels 6.x-2.0 alpha3 and this bug still exists.
I think many people would be thankful for a patch or a tutorial to fix it by themselves.

Thanks in advance and best regards,
Stefan

design.er’s picture

Version: 6.x-2.0-alpha2 » 6.x-2.0-alpha3
Priority: Normal » Critical
Status: Closed (fixed) » Active
Issue tags: +content, +empty

Sorry, forgot to activate this thread again.

riverripper’s picture

Another 6 weeks passed and still no fix for this major bug !
Can someone please solve this problem?
THANKS !

summit’s picture

Hi Panels 2 will not go out of Alpha state, please go to panels 3!
Greetings,
Martijn

eoneillPPH’s picture

I'm having the same problem with Panels 3: couldn't get a node to show up unless I entered the NID, NOT the title. (The auto-complete for finding the node isn't working, as well)

Chaos 6.x-1.0-alpha2 (ctools)
Panels 6.x-3.0-alpha2 (3.0-dev had ajax errors and wouldn't work at all)
Views 6.x-2.3 (seems ok)
Drupal 6.9

kidsleep’s picture

You may want to try the patch at http://drupal.org/node/341307 It fixed the issue for me in panels2 on D6. You may have to modify it for panels3.

Leeteq’s picture

Title: cant show 'node content' on D6 » Panels doesnt show 'node content' on D6
Version: 6.x-2.0-alpha3 » 6.x-3.x-dev

Subscribing.

merlinofchaos’s picture

Status: Active » Closed (fixed)

THis issue is too confused with the spammer having changes stuff around. Closing it. Legitimate problems: File new issues. Thanks.