Skip to main content

Smart pagination or page break in Drupal 7(CK editor)


1. Install Smart Paging module
  Go to Administration › Configuration › Administer Smart Paging settings.
  Under 'Default page break method', select "Manual placement of page break placeholder".

2. Install  'Ckeditor' Module
  Go to Administration › Configuration > Ckediotr profiles > Filtered HTML
  Edit the settings of the Advanced (Filtered HTML) Profile. Under 'Editor Appearance' section, In plugins check the required options like "Plugin for inserting a Drupal teaser and page breaks.".

3. Edit the configuration settings of input formats (Filtered HTML, Full HTML, Plain Text)
  Go to Administration › Configuration > Text formats. Edit the required input format. For example say "Filtered HTML". Under  "Enabled filters" section, check the 'Smart Paging' option and uncheck all the remaining checkboxes.

4. Go to Content type 'article' and create new content. We will see the Ckeditor attached to the body field. Enter the required content. As per our requirement provide the image, caption for the image and then a page break. After every page break the content will be moved to the next page.

Comments

  1. i followed u r structure, in my content page showing number of pages but when i click the next or any of another number its not going another page
    Plz help me

    ReplyDelete
  2. remove JavaScript plugin in Administer Smart Paging.

    ReplyDelete
    Replies
    1. which JavaScript plugin means total plugin folder or else this(smart_paging.js) file only

      can u enplane me brief because i am a fresher

      Pleas see below link:
      http://magazine.powerenergyindia.com/content/rpower-raises-rs-1588-cr-fund-rajasthan-solar-project

      Delete
    2. can please send the setting of ur smart pagging.

      while these are my settings:
      [admin/config/content/smart_paging]

      URL paging prefix :- page;
      check with and without checking the checkbox here.
      Default page break method:- manual placement;
      Page break placeholder :-
      Display content title suffix :- check the checkbox;
      Content title suffix :- : Page

      Delete
  3. Are you using the ckeditor plugin for wyswyg or the actual ckeditor:
    https://drupal.org/project/ckeditor

    As I don't think smart paging works with the module.

    ReplyDelete
    Replies
    1. No nick.

      Smart paging works with Ckeditor too.

      Delete

Post a Comment

Popular posts from this blog

Difference between session.gc_maxlifetime and session.cookie_lifetime in Drupal setting.php

ini_set('session.gc_maxlifetime', 200000); This value is for the server. It is a settings for Session Garbage Collection. If the users last visit happened before 200000s then this session is eligible for garbage collection. Since it is GC, the session value may be discarded and not compulsory. If a GC action happens after the session was made eligible for the GC, it will be deleted. ini_set ( 'session.cookie_lifetime' , 2000000 ); This value is for the browser. This is the absolute maximum time till which a browser can keep this cookie active. A 0 value here means immediate or when the browser is closed. Source: 

CKFinder Installation in the CKEditor for Drupal 7 Module

Please follow the steps below;  Go to http://ckfinder.com/download and download CKfinder Unpack the contents of the installation package into the directory that contains the CKEditor module and place it in thesites/all/modules/ckeditor/ckfinder (or sites/all/libraries/ckfinder) folder. . When the files are unpacked, you should see the following file structure inside the drupal/sites/all/modules directory: Now open the CKFinder configuration file (ckfinder/config.php) and introduce the code changes described below. Firstly, remove the CheckAuthentication() function (do not worry, this function is defined in filemanager.config.php, see below): function CheckAuthentication()       <- remove it {                                    <- remove it    //WARNING : DO NOT simply...      <- remove it    ...                               <- remove it    return false;                     <- remove it } For CKFinder installed in the sites/all/modules/ckeditor/ckfinder