I know I have requested support for flexinodes before, but it was marked as a duplicate, which I think should not be the case. It seems it was marked as a duplicate for CCK.

CCK support has been added, but I have just tried the latest paging module and it does not work for flexinodes, but works fine for stories.

Any chance of getting flexinode support? Or are there impediments to paging flexinodes?

Comments

Gurpartap Singh’s picture

Haven't been into coding level for flexinode ever... Although it shouldn't be that hard to implement, yet unsure about it.. Maybe you can find someone in services forums, in case if you are eager to get the feature done.. just a suggestion :) Won't mind looking into 4.7.x flexinode code.. but before that, got loads of issues to clear out.. certainly time consuming ;)

Gurpartap Singh’s picture

Category: feature » support
Status: Active » Fixed

In the function paging_nodeapi(), you can add:

if (isset($node->flexinode_11)) { // support for CCK
          _paging_nodeapi($node,
                          $node->flexinode_12,
                          $node->flexinode_11,
                          $op, $teaser, $page);
        }

Where $node->flexinode_11 is the teaser field and $node->flexinode_12 is the body field for your flexinode content type. The variables information was retrieved from http://drupal.org/node/45485

Anonymous’s picture

Status: Fixed » Closed (fixed)