I could not get my paging to work without changing the following line..

if (!$node->in_preview && $node_type && ereg('<!--paging_filter-->', $teaser ? $nodeteaser : $nodebody)) {

To

if (!$node->in_preview && $node_type){

So that paging would work by default otherwise I had to add a "

" in the copy. Did I miss a step somewhere?

CommentFileSizeAuthor
#4 paging-DRUPAL-5.full_.patch947 bytessun

Comments

ceej23’s picture

Thanks Ryan, this helped me too.

If it helps, I'm using TinyMCE and the Input Format uses Paging and URL filters.

wincliff’s picture

Hi Ryan

Thanks a lot! It worked when I changed the code as you suggested. What was your logic when you did that change? Thanks a lot!

sun’s picture

Status: Active » Postponed (maintainer needs more info)

1) Did you enable Paging for this content-type in Paging's settings?
2) Are you also using HTML corrector and is it enabled for the affected content?

sun’s picture

Title: unable to use paging without filter tag » Add 'page' query argument value 'full' (Pathauto)
Version: 5.x-1.0 » 5.x-1.x-dev
Category: support » feature
Status: Postponed (maintainer needs more info) » Needs review
StatusFileSize
new947 bytes

Nothing simpler than that.

Attached patch allows to view the full output of (a) node(s) via

http://www.example.com/foo/bar/baz?page=full

sun’s picture

Title: Add 'page' query argument value 'full' (Pathauto) » unable to use paging without filter tag
Version: 5.x-1.x-dev » 5.x-1.0
Category: feature » support
Status: Needs review » Postponed (maintainer needs more info)

Ouch. Wrong issue. :-(

minesota’s picture

subscribing.

sun’s picture

Please do not only subscribe, answer the questions:

1) Did you enable Paging for this content-type in Paging's settings?
2) Are you also using HTML corrector and is it enabled for the affected content?

Gurpartap Singh’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)

The suggested change "works" for those who didn't enable the paging filter for the used input format. Removing that check is bypassing filter checking. Please see README.txt for installation instructions.