• BORED Logo

  • Wordpress Plugin : Multipage Toolkit

6th January 2008

Wordpress Plugin : Multipage Toolkit

By Tarkan | Permanent Link
Updated Thu, 4th September 2008

«»

Yes, I have finally done it. I have added writing a wordpress plugin to my repertoire of skills. This is the first time I have ever released code for other people to use , so please be gentle.

This plugin has been written to overcome something that is a personal bugbear about Wordpress for me and that is its multiple page posts. The built-in function that provides pagination for posts is very limited and just does not give you the flexibility to find the perfect navigation system for your blog.

Wordpress as standard has the ability to paginate your posts, i.e. split very long posts over separate pages. You do this by using the <!–nextpage–> tag to create page breaks, the real shortfall of the built-in function is there is no way of adding titles or headings to these pages - something like index or content list, so readers can jump straight to specific areas - this is commonly seen on hardware review sites.

I wrote this plugin to try and improve this area and open up even more possibilities with Wordpress.

My plugin provides 3 functions.

  • Add titles or headings to each page (using <!–pagetitle:–>)
  • Display number of pages on index pages (TA_display_pages)
  • Quick jump and title navigation options (TA_content_jump)

Very easy to use and very simple to integrate in to any theme.

Installation

  • Download file (here)
  • Unzip and place directory in to your “plugins” folder (/wp-content/plugins/)
  • Activate plug-in through the admin panel

Change Log

Version 2.6 (5th Sept 2008)
Added auto insertion for Pages as well as Posts
Fixed issues with saving settings
Fixed html and code entry in to text boxes

Version 2.5 (10th July 2008)
SVN broke upload - uploading again

Version 2.4
Changed CSS style naming for the all page links

Version 2.3 (internal release)
Added option to have custom page seperators (including javascript for adverts) on single (ALL) page display
Added function call to use options page settings from inside the theme files
Fixed badly coded string matching (Thanks to Andrei for the fix)
Fixed spelling error in button registration process (Thanks to Jonathan for spotting this)
Fixed maintain trailing slash consistency across site

Version 2.2 (internal release)
Added ALL link Display Text Option
Added new CSS class for ALL link styling (contentjumpall , contentlistall)
Fixed bug where pagetitle followed by nextpage caused errors
Fixed tinymce js cache issues (hopefully..)
Fixed navigation for preview draft posts

Version 2.1 (30th May 2008)
Major Update
New Display ALL pages link, view multipage posts on single page
Added Auto Insert Options page, no more code necessary
Visual Editor Integration, buttons to add page breaks and page titles

Version 1.2 (20th March 2008)
Added a check for trailing slashs and permalink structure for paging
Cleaned up readme.txt for better formatting
Checked compatibility with Wordpress 2.5

Version 1.1 - Add new quickjump method - list menu / content table

Version 1.0 - Initial version

Donations

Please consider donating if you have found this plugin useful, it helps pay for my hosting!!

How to use

Function TA_display_pages

This function allows you to simply display page information for your posts on the post listing pages (such as index, categories and tag pages). It can also be used to display the page number of the current page.

Insert the following code into your theme files in the location you want the page information to appear:

<?php if(function_exists(’TA_display_pages’)) { TA_display_pages(); } ?>

In my case I added the code in to my index.php , category.php and tag.php files. Next to the post title code. Here is the code as used in my index.php file:

<h2><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a><?php if(function_exists(’TA_display_pages’)) { TA_display_pages(’ <small>(’,’ pages)</small>’,”,’total’); } ?></h2>

Options

TA_display_pages($firsttext, $lasttext, $midtext, $display_type)

  • $firsttext = ‘ Page ‘
  • $lasttext = ‘ ‘
  • $midtext = ‘ of ‘ (only used when display_type is all)
  • $display_type = ‘all’ (total , current, all)

Examples
 
Default settings      Page 1 of 3

TA_display_pages(’(',’ pages)’,”,’total’)            (3 pages) 
 
TA_display_pages(’(you are on page ‘,’ now)’,”,’current’)       (you are on page 1 now)

Go on to the next page to read about the other functions.

–~~~~~~~~~~~~–

Create Page Title / Headings

To create page titles using this plugin is very easy.  Since version 2.1 The Visual Editor has button for insertion of nextpage and pagetitle.

When you are editing or writing a post, switch to CODE view and type in the following tag to create page breaks:

<!–nextpage–>

Anywhere inside each page add (including the starting page) the following tag:

<!–pagetitle:PAGE TITLE HERE–>
 
Replacing PAGE TITLE HERE with your actual page title. Make sure each page has only one pagetitle tag, the plugin is not page aware - so it counts each tag in order of occurrence, so first tag becomes title for first page, second tag becomes title for second page, so on…..

Function TA_content_jump

Since version 2.1, the options page can auto-insert navigation in to the posts.

You can also call the settings from the options page directly inside your theme using the following code.

1st Instance Options - <?php TA_content_jump(1); ?>

2nd Instance Options - <?php TA_content_jump(2); ?>

Otherwise you can use the code below to set the options in your function call.

Insert the following code in to your single post theme files, usually single.php:

<?php TA_content_jump(); ?>

The code is best inserted before or after the page content is displayed, so the navigation appears at the top or bottom of the page. Here is the code as used in my single.php file

<div align=”center”><?php TA_content_jump(’Page :’,”, 2, 2, 0, False, ‘«’, ‘»’); ?></div><div align=”center”><?php TA_content_jump(); ?></div>

The above produces the navigation links you see at the bottom of this page.

Options

There are several options with this function. Here is an outline:

  • Quickjump method - Drop Down List or Direct Page Links  or Ordered List
  • Quickjump using page titles or page numbers
  • Standard navigation using previous or next links
  • Title navigation using page titles as the previous or next link

TA_content_jump($before, $after, $title_number, $quick_type, $nav_type, $nav_number, $previouspagelink, $nextpagelink, $firstpagetext, $lastpagetext, $display_all, $display_all_text) 

Defaults

$before = ‘<p>’
$after = ‘</p>’
$title_number = 2  (used when quick_type set to 2, adds page number to page title 0 = no number, 1 = Page Title (1/3), 2 =  1. Page Title) 
$quick_type = 1  (quick jump navigation type 0 = do not display ,1 = Drop Down List ,2 = page number links, 3 = Ordered List) 
$nav_type = 2  (navigation type 0 = do not display, 1 = use page titles as next or previous, 2 = use $previouspagelink/$nextpagelink as next or previous links)
$nav_number = TRUE  (only used when nav_type = 1, if TRUE page titles preceded by page number) 
$previouspagelink = ‘«’
$nextpagelink = ‘»’
$firstpagetext = ‘On First Page’ (text to display when on first or last page when using nav_type 1)
$lastpagetext = ‘On Last Page’
$display_all = TRUE (Display ALL page link on navigation)

$display_all_text = ‘View All’ (All page link name
 
 **NOTE** nav_type is switched to 2 when post has no page titles !!!
 

Example
 
 <?php TA_content_jump(’Page :’,”, 2, 2, 0, False, ”, ”); ?>

Page : 1 2 3

On the next page I go over the various styling options available…

–~~~~~~~~~~~~–

Styling Options

The plugin uses the following CSS styles, copy and paste this code in to you theme’s style.css file:

span.contentjumplink { font-size: 2em;
       color: #aaa;
       vertical-align:middle;
       font-weight: bold;
       padding: 0 3px 0px 3px}
       
 a.contentjumplink {  font-size: 2em;
       color: #25A;
       vertical-align:middle;
       font-weight: bold;
       padding: 0 3px 0px 3px}
 span.contentjumptitle { vertical-align: middle ;
       color: #aaa;
       font-weight: bold;
       border:1px #ddd solid ;
       border-top-color: #a7a7a7;
       padding: 3px 3px 3px 3px }

 ol.contentlist { background-color:#f5f5f5; width: 20%; text-align:left; line-height: 3px; padding: 0px; }
 ol.contentlist li { padding: 0px; }
 span.contentlist { color: #aaa; font-weight: bold; }
 a.contentlist { padding: 0px; }
 

 a.contentjumptitle {  vertical-align: middle;
       border:1px #ddd solid ;
       border-top-color: #a7a7a7;
       padding: 3px 3px 3px 3px}
 select.contentjumpddl { vertical-align: middle;
       margin: 0px 0px 0px 0px ;
       color: #25A;
       font-weight:bold;
       font-family:Verdana, Arial, Helvetica, sans-serif;
       width: 160px }

 span.contentjumpnumber, span.contentjumpall { vertical-align: middle ; color: #ccc; font-weight: bold; border:1px #ddd solid ; border-top-color: #a7a7a7; background-color: #25a; padding: 3px 3px 3px 3px }
a.contentjumpnumber, a.contentjumpall { vertical-align: middle; border:1px #ddd solid ; border-top-color: #a7a7a7; padding: 3px 3px 3px 3px}

a.contentjumpnumber:hover { border-top-color: #25a; }

contentjumpall { padding: 3px 5px 3px 5px;}

 

These CSS styles are only provided if you want more control over how your navigation links appear, the values above are the ones I use to create the look of my links at the bottom of my posts.

I hope you enjoy my plugin and you find it useful. Any problems or questions please contact me or leave a comment…

Page : 1 2 3View All

«»

Posted on Sun, 6th January 2008 at 1:41 am under Tutorials, Wordpress. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

There are currently 79 responses to “Wordpress Plugin : Multipage Toolkit”

Comments? Suggestions? Help? Well here's your chance! Leave a comment.

  1. 1 On January 17th, 2008, Texto.de said:

    WordPress PLugin Multipage Toolkit -nextpage gestalten….

    Du hast einen sehr lanfgen Beitrag, den du mit nextpage geteilt hast. WordPress zeigt dann einfach Seite 1,2,3,. Dieses WP Plugin Multipage Toolkit gibt dir die Möglichkeit dieses nextpage stylisher zu machen.
    ……

  2. 2 On February 2nd, 2008, WordPress Plugin Releases for 2 / 1 | BlogBroker24-7 said:

    [...] Release Page | Download [...]

  3. 3 On February 2nd, 2008, Uniontown Pennsylvania » Blog Archive » WordPress Plugin Releases for 2 / 1 said:

    [...] Release Page | Download [...]

  4. 4 On February 2nd, 2008, Wp Wordpress » Blog Archive » WordPress Plugin Releases for 2 / 1 said:

    [...] Release Page | Download [...]

  5. 5 On February 2nd, 2008, WordPress Plugin Releases for 2 / 1 | blog.rotracker.net said:

    [...] Release Page | Download [...]

  6. 6 On February 2nd, 2008, Goodluck » Плагины Wordpress релиз на 2/1. said:

    [...] Сайт автора | Скачать [...]

  7. 7 On February 2nd, 2008, Pharmacy Technician Review » Blog Archive » WordPress Plugin Releases February 01, 2008 said:

    [...] MultiPage Toolkit [...]

  8. 8 On February 2nd, 2008, DogSolitude › WP Plugin - Multipage Toolkit said:

    [...] WP Plugin: Multipage Toolkit.  Add titles and page numbers to posts/pages that last several ‘pages’ This was written by rob. Posted on Saturday, February 2, 2008, at 2:28 pm. Filed under WP Plugins. Bookmark the permalink. Follow comments here with the RSS feed. Comments are closed, but you can leave a trackback. ‹ Woodland Scenics © 2008 ¶ Thanks, WordPress. ¶ veryplaintxt theme by Scott Allan Wallick. ¶ It’s nice XHTML & CSS. [...]

  9. 9 On February 2nd, 2008, Multipage Toolkit WordPress Plugin » D' Technology Weblog: Technology, Blogging, Tips, Tricks, Computer, Hardware, Software, Tutorials, Internet, Web, Gadgets, Fashion, LifeStyle, Entertainment, News and more by Deepak Gupta. said:

    [...] Plugin Page [...]

  10. 10 On February 3rd, 2008, Une semaine avec Wordpress #3 said:

    [...] Multipage Toolkit, quand à lui, aide également à gérer des pages, mais pas les mêmes… Ici, on parle de plusieurs pages pour une article. Parfois, on a un article qui est trop long et on voudrait pouvoir le scinder en plusieurs pages, histoire de ne pas laisser le visiteur scroller trop longtemps vers le bas… Et bien, avec ce plugin, c’est terminé. [...]

  11. 11 On February 3rd, 2008, Wordpress Plugins 3 de Febrero at Corazón de La Mancha said:

    [...] Release página | descargas [...]

  12. 12 On February 3rd, 2008, Blogosphere News Feb 4th | Blogging Sueblimely said:

    [...] new Wordpress Plugin : Multipage Toolkit - allows you more customization of long posts, including pagination and individual page [...]

  13. 13 On February 5th, 2008, Skylog » Blog Archive » links for 2008-02-05 said:

    [...] Multipage Toolkit (tags: wordpress plugin) [...]

  14. 14 On February 6th, 2008, Diseño Web said:

    Congratulations, a emptiness was filled with this plug.

    Good Work

  15. 15 On February 6th, 2008, Tarkan said:

    Thank you.

  16. 16 On February 8th, 2008, WordPress Plugin Releases for 2 / 1 said:

    [...] Release Page | Download [...]

  17. 17 On February 26th, 2008, Gigi said:

    hi tarkan,
    i’m using your plugin (thanks) but i’d like to know if it’s possible use TA_content_jump function to display an ordered menu with page title links.

    At the bottom of the article i need something like this:

    1. Pagetitle1
    2. Pagetitle2
    3. Pagetitle3

    At the moment i suppose that it’s possibile only by a dropdown menu and not by an ordered menu. Right?

    Thanks a lot.
    Gigi

  18. 18 On February 26th, 2008, Tarkan said:

    Hi Gigi,

    That is an interesting suggestion. I can introduce that option in the code.

    Leave it with me for a week and I will put up a new version.

  19. 19 On March 3rd, 2008, Tarkan said:

    The ordered list has been added to the plugin. It has been updated on wordpress.org

  20. 20 On March 19th, 2008, rub said:

    Hi,

    1/* I installed and activated the plugin

    2/ I’ve put the following codes inside my pages :

    my first paragraph here
    and
    my second paragraph here

    And then I put inside the single.pphp template
    Bur it doesn’t work.

    Any adivce/idea ??
    Many thanks

    Do your plugin support both article and pages ?

  21. 21 On March 19th, 2008, rub said:

    Hi,

    1/* I installed and activated your plugin

    2/ I’ve put the following codes inside my pages :


    my first paragraph here…

    and
    my second paragraph here….

    and so on…

    And then I put inside the single.pphp template
    But it doesn’t work.

    Any advice/idea ??
    Many thanks

    Do your plugin support both wordpress articles and pages ?

    sorry but my previous poste didnt take the code. I must post it again

  22. 22 On March 19th, 2008, Tarkan said:

    Hi,

    I have tried emailing you but it keeps bouncing, can you contact me via my contact link above.

  23. 23 On March 19th, 2008, rub said:

    Thank you very much for your reply, and sorry for the email adresse problem..; this one will work.

    So I tried on the comments section of your blog to explain my problems, but comment don’t accept code sample… even the contact form don’t..If I put HTML ou PHP code it desappears… Ive tried also by contact link form but impossible to explain my problem precisely… contact form also reject code samples. How can I do to show code ?

    Basically I tried yo use the Function TA_content_jump option . I think I put the right code in the article, also the right one in single.php side (in my activated theme folder) inside the Loop. I don’t use the basic one but Technology wordpress themes made by 786dir.org/

    I tried to use your plugin on articles and also on pages, in local and also in remote WordPress configuration.

    I spend already fews hours, and as I am a designer, not a programmer still asking to myself what I doing wrong ;-)

    Thanks

  24. 24 On March 19th, 2008, Tarkan said:

    I have sent you an email, please reply with your single.php attached.

  25. 25 On April 13th, 2008, The Best Blogging Software (WordPress) + The Top 60 WordPress Plugins | Midas Oracle .ORG said:

    [...] Multi-page Toolkit 1.2 » Tarkan Akdam (url) Multipage post replacement for wp_link_page with page titling [...]

  26. 26 On April 14th, 2008, April Reign said:

    is there a trick that would allow the next page jumpbox to show before the related posts, tags etc?

    As you can see here there is quite a bit of scrolling to get to the navigation. http://www.breadnroses.ca/frontpage/?p=70

  27. 27 On April 14th, 2008, Tarkan said:

    It would depend on how your related post and tags are inserted.

    If the plugin themselves insert the code in to the end of you post automatically then it will not be possible.

    I have sent you an email if you can reply with your single.php attached I can have a look to see if it is possible or not.

  28. 28 On April 18th, 2008, John Pratt said:

    Having the same problem as the earlier person, I’ve placed the comment code in a post to break up the page and then your sample code in single.php and it doesn’t work at all. I hack and design themes and work with a lot of plugins, and in fact I was writing a post describing how to make your plugin work - and I can’t get it to work in my blog at all. I’m using WP 2.3.3. Please email as soon as you can so I can show you where it doesn’t work and the code I used (just your example code). The sooner I hear from you, the sooner I can finish my article and send you some link love.

    thanks!

  29. 29 On April 18th, 2008, Tarkan said:

    John, I have sent you an email - if you can reply with a copy of your single.php for me to look at.

  30. 30 On April 24th, 2008, Walt said:

    I have a number of questions if you don’t mind :)

    Will this code work with pages as well as posts? This is what I need - a front page that is actually made up of multiple pages (page 1,2,3 etc). Preferably using tabs at the top for the individual page numbers.

    It sounds like your plugin can do this (perhaps with CSS styling?) for posts, but will it work for a page?

    Thanks,
    Walt

  31. 31 On April 25th, 2008, Giovanni said:

    I really can’t install your plugin.

    I inserted the code but nothings happen with my template.
    I’m using the gallery feature on wp2.5
    it’s not working…
    if you could help me thank you:)

  32. 32 On April 25th, 2008, Tarkan said:

    Giovanni, a previous commentator noticed - looks like Wordpress is turning double dash in to a single long dash.

    The code you need within your posts is < ! - - nextpage - - > notice the double dashes, no spaces.

    I have sent you an email with the correct formatting for the nextpage and pagetitle quicktags.

  33. 33 On April 25th, 2008, Tarkan said:

    Walt, my plugin is really only designed for multipage posts.

    I think Lester Chan has a plugin for pretty pagination of pages here :- http://lesterchan.net/wordpress/readme/wp-pagenavi.html

    Hope this helps..

  34. 34 On April 25th, 2008, Walt said:

    Hmmm. I’m probably not explaining myself well. When I say “page”, I’m talking about a “write page” page rather than the entire blog page or the index/posts page (like the plugin you referenced seems to address). The kind of pages I’m talking about would be an About page or a Contact page. (Perhaps there would be less confusion if WP had named it a “perma-post” or something like that. I’ve had enormous difficulties searching the plugins database using “page” in the seacrch terms).

    Anyway, I have such a “page” the uses the functionality, and I thought perhaps I could dress up that page’s navigation using your toolkit. As it is, I really don’t want to mess with the templates too much, but I will if necessary. What I need to know is can your paging functions be styled to look more like a tabbed interface?

  35. 35 On April 25th, 2008, Tarkan said:

    Sorry Walt I misunderstood you.

    Yes, of course it can be used on page posts (my example page is a page post http://www.tarkan.info/archives/multipage )

    and yes with some CSS styling you can make it look however you want. I have basic looking tab style with my page title navigation bar (see my example page) you can use that as a starting point.

    For a proper tabbed look you can always create some background tab images and CSS to style them.

  36. 36 On May 7th, 2008, Alex Leonard said:

    Do you know what would be amazing (as I’m loving this plugin), is there any chance you’d be able to work out adding in a tinymce editor button with the functions available.

    Eg. One button for “Insert Next Page Break”
    and
    One button for “Insert Paged Title” or something along those lines.

    This would just make it that little bit easier for people scared of the HTML view.

    I like the way that Oliver Siedel has worked in that functionality for the Cforms plugin, and if you check that plugin out I think you’ll see what I mean - perhaps it would be easy enough to borrow his code to gain the intended effect?

  37. 37 On May 7th, 2008, Tarkan said:

    Alex,

    Thanks for the feedback!!!

    When I last looked at creating a button in tinymce it did not look too difficult but with the upcoming release of 2.5 and the changes to tinymce - I decided to leave it.

    One thing that has always bugged me is that wordpress by default does not include a button for nextpage!

    I will have another look at it, so please stay tuned…..

  38. 38 On May 7th, 2008, JTPratt's Blogging Mistakes said:

    In your first page description it says that the plugin will give the ability to create both headers and titles for multiple pages, but in fact it only gives the ability to do a header. It doesn’t update the HTML title at all, which is very, very bad for SEO and SERP’s since multiple pages will have the same name (but different content). The “pagetitle” comment only uses it’s content on the page for navigation elements created by your toolkit.

    Is there a way to update the actual HTML title of the page (and override the original one) on the multiple pages?

  39. 39 On May 10th, 2008, Tarkan said:

    Hi John,

    I have had a look at doing this and sadly it is one seriously difficult thing to do. HTML title is actually pulled from the database outside of the wordpress loop.

    The only way would be to actually store the page titles in the database and pull them outside of the loop.

  40. 40 On May 10th, 2008, baron said:

    hi. Thanks for plugin

    cool.

    best regards

  41. 41 On May 22nd, 2008, Sharon said:

    Hi.

    I am trying out this plugin on one of my websites and I’ve decided to use where I would like it to appear on the post page. It works fantastic.

    However, I am having difficulty getting rid of the default “Page 1, 2, 3″ generated by the plugin and I’m hesitant to start deleting the code inside the plugin editor. The defaul “Page 1, 2, 3″ is showing up in the most funniest spot after the comments and comment box section. I get about 20+ comments for most post and you can just imagine having to browse through all the comments to get to page 2, and then to do the same thing again to get to page 3. Can you let me know where I should start copying and deleting from the plugin code? Would really appreciate it.

    I guess you don’t have a subscribe to comment button?

    and I’m having difficulty getting rid of the default “Page 1, 2, 3″ that appears at the end of each post.

  42. 42 On May 22nd, 2008, Tarkan said:

    Hi,

    I have sent you an email, if you can reply with your single.php.

  43. 43 On May 26th, 2008, Will said:

    Can this be made to work in the “Main Index Template”?

  44. 44 On May 30th, 2008, Wordpress Plugin : Multipage Toolkit 2.1 » Tarkan Akdam’s BORED said:

    [...] read my post here, which covers all the functions and options available as well as CSS styling [...]

  45. 45 On May 30th, 2008, Ilya said:

    Hi,

    This plugin sounds nice. I want to use this plugin to plit posts into 4 sections max:

    Introduction | Pictures | Route | Comments

    I wanted to use the tabs plugin, but that one is unstable. Do you reckon I could use this plugin to create a horizontal in-post menu? I can imagine adding comments to a separate tab could be pretty difficult, but really hope it is possible.

    Thank you

  46. 46 On May 30th, 2008, Tarkan said:

    Sorry the plugin as it stands cannot do what you want.

    You would need a custom plugin plus some code work in the theme to do what you want.

    If your 4 section menu is the same for all your posts, I would create that menu in your theme - then have Introduction point to page 1, Pictures to page 2, Route to page 3, and Comments on page 4.

    The other way to do it would be to modify my plugin, so that it creates the 4 section menu and only shows the comments on the 4th page.

  47. 47 On May 30th, 2008, Tarkan said:

    Hi Andrei, Have you got version 2.1? I made an error with folder naming with version 2.0 so I quickly uploaded another version (2.1).

    Which version of Wordpress are you running?

  48. 48 On May 31st, 2008, Dun said:

    I have a problem with preview. When I check the article in the preview mode before publishing, I can not see other pages (page 2, 3 etc.). Links like http://mysite/blog/?p=664/2/ are only showing the first page in the preview mode. Could you please fix it?

  49. 49 On May 31st, 2008, flixnet said:

    Hei .. good work .. i was searching for something like this… well.. gotta serious problem.

    am using wp 2.5.1 and no buttons showing… what to do now ?

  50. 50 On May 31st, 2008, Tarkan said:

    Andrei, Can you go into the settings / Multipage toolkit options page and click on the reset to default button. Just to clear the option settings in the database.

    Another thing it can be is the visual editor cache javascript cache file is messed up, if you goto wp-content / uploads / js_cache and delete the file cache file, tinymce will generate a new one when you go in to the visual editor again.

  51. 51 On May 31st, 2008, Tarkan said:

    Flixnet,

    Some else has mentioned this to me, it is taking anything from a few hours to a day for the buttons to appear.

    The issue is because the visual editor uses a cache file for the javascript. I am working on fixing it in the next release.

    The best thing to do is follow the instruction above and delete the cache file in wp-content / uploads / js_cache.

    Then go to the visual editor and do a full reload (IE ctrl-f5). Hopefully the buttons should then appear.

  52. 52 On May 31st, 2008, Tarkan said:

    Hi Dun, Thanks for the feedback - I have just tested it out and yes you are right the multipage aspect does not when previewing a post which has not been published.

    I will have it fixed in the next version.

  53. 53 On May 31st, 2008, Dun said:

    My another request is that, could you please make an option for changing “View All” and “ALL” texts? I would like to write them in my own language, but I could not see an option. I do not want to change them in the source code each time the plugin is updated.

  54. 54 On May 31st, 2008, Tarkan said:

    I was going to do that for the next release. I made so many changes to the plugin for the 2.1 release, I thought things like that can wait.

  55. 55 On June 2nd, 2008, flixnet said:

    Hi Tarkan… thx for ur reply mate… its great that the instruction you gave fits and displays the button !!

    well… but are they working ?.. an inserted page title is not showing in the web page… am i wrong somewhere ??

  56. 56 On June 2nd, 2008, MAS said:

    ALL link does not display. Pages works. Display ALL Link is selected, but does not appear. Tested on IE 7 and FF 2.

  57. 57 On June 3rd, 2008, flixnet said:

    ok .. page numbers displays … but how do i get the dropdown box in a post or page ?? can anyone help…

  58. 58 On June 5th, 2008, jocuri said:

    wow! excellent job and hope it will work for me..

    thanks

  59. 59 On June 17th, 2008, Free Windows said:

    Hi Tarkan, and congratulations on this plugin.

    There are two issues; first, it seems not to work together with global translator. E.g. the second (translated) page is again the first.

    The other issue is that navigation adds a slash at the end, even if the permalink structure is the default (?p=1 etc).

    Is there anything to be done for these?

    Kind regards

  60. 60 On June 17th, 2008, Tarkan said:

    Hi, thanks for the feedback - I am about to release another version - I will look in to the issues you have mentioned before release.

  61. 61 On July 16th, 2008, MovieFan said:

    Hi Tarkan,

    I’ve been looking for precisely this type of WP plug-in. I’ve downloaded it, and plan to install it tonight. Thanks for this plug-in!

  62. 62 On July 16th, 2008, Raul said:

    After upgrade my Wordpress to 2.6 distribution, all the page navigation in the blog is gone , and in the plug-in settings I can´t save any setting.

  63. 63 On July 16th, 2008, Tarkan said:

    I am very sorry. It appears that I missed a bug in this release.

    If you have the All Page seperator set to no seperator in the options page - this causes the settings not to be save.

    Workaround is to set the seperator to custom code. This will allow the settings to be saved.

    I will try to release version 2.6 of the plugin later on today.

  64. 64 On July 16th, 2008, Raul said:

    Thanks for your help!!!… works like a charm now… :)

  65. 65 On July 18th, 2008, Wordpress Plugin Centre - Wordpress Plugin : Multipage Toolkit Tarkan Akdam s (WP Tutorial) BORED said:

    [...] Wordpress Plugin : Multipage Toolkit Tarkan Akdam s BOREDThis plugin improves the standard pagination functions of Wordpress. Better navigation linking, Quickjump Drop Down List, post content indexing features - page titles and headings. [...]

  66. 66 On July 26th, 2008, fossil said:

    Above all, as it stands, it is an already very useful plugin, and thank you much for maintaining it, such the debug for WP 2.6.

    Not sure how far you want to take this, but this has the makings of a whole new genre of plugins for CMS. Case in point, my application is to offer a text book manuscript which involves chapters and subchapters and even Part1, part2 etc. manuscripts, each with a fairly deep chapter hierarchy.

    Thus, You are practically ready to create a table of contents and drop downs within drop-downs.

    Yours is already far beyond ‘just another plugin’. It coulld be a career-maker, if that is something within the scope of what you envision for yourself.

    Thanks a ton for this one, however. I keep hoping —

  67. 67 On July 27th, 2008, Catalin said:

    Hello there. I appreciate your work, this is very useful plugin. I was looking for someting like this, but now that i have it… i can’t use it. Very frustrating. :-w

    I think it’s not the plugin itself but some problems with next page tag and wordpress, or my theme… (when i use the nextpage tag… i only get one page and the rest is not shown.)

    Please, tell what code to paste and where so i can get this working.

    Many many lots of thanks, :)
    Catalin

    P.S.
    I placed this code in the loop (index.php and page.php) : <?php wp_link_pages(’before=&after=’); ?> and this also

  68. 68 On July 28th, 2008, Tarkan said:

    Sounds like you are not creating multi-page posts. The correct tag to use when switched to code view is < ! - -nextpage- - > (no spaces between the characters, wordpress has a bad habit of turning double dashs in to one long dash).

    Better still use the buttons created by my plugin in the visual editor.

  69. 69 On August 30th, 2008, Andrea said:

    Hi,

    I’m very excited to use your plugin! Thanks for putting it together. I’m novice (no php!) so I’m relying on the Tiny MCE buttons. Trouble is, mine haven’t been displaying properly since a recent and painful WP upgrade. Can you help?

  70. 70 On August 31st, 2008, Tarkan said:

    Andrea,

    Are you stilling missing the buttons? Try refreshing the browser (shift-f5). You can manually delete the Tinymce cache (/wp-content/uploads/js_cache/tinymce_*).

    The other thing worth mentioning someone else had issues with is to make sure the plugin is installed in its own folder which should be multi-page-toolkit. So the files are installed here /wp-content/plugins/multi-page-toolkit.

  71. 71 On September 4th, 2008, shadey said:

    I managed to get the plugin working nicely. However when I go to the settings page for the plugin, none of the changes ever save/apply. Where can I edit these values manually so that I can force the use of an Ordered List on my page? Thanks.

  72. 72 On September 4th, 2008, shadey said:

    Sorry to spam your comments but spent a while due to errors. I was copying code from your text, but the ” would paste with me as a single “, very odd but fixed now :-)

    Works great for me. Thanks :-)

  73. 73 On September 4th, 2008, Tarkan said:

    Shadey,

    glad you got it working. Yeah, Wordpress turns double dashes in to a em-dash (one long dash) which obviously breaks the code thing.

    Have you got the buttons going?

  74. 74 On September 15th, 2008, Lia Suzuki said:

    Hi,

    I’ve been using your plugin on my other site (http:www.liasuzuki.com) and really like it.

    I just installed it to my new blog (http://www.toilettraincatblog.com) and would like to use it there, too. I tried the “pagetitle” button and can’t seem to make it work. (If I understand the plugin correctly, I should have the capability to input the page title, making the customary “1 2 3…” at the bottom “Day 1 Day 2 Day 3…”, right?) I input the title (Day 2), but the usual “1 2 3…” is still showing up.

    Any suggestions?

  75. 75 On September 15th, 2008, Tarkan said:

    Hi Lia,

    Your theme maybe using the builtin WP function to display page links. You need to remove the function call from your theme.

    In the multipage toolkit settings page to achieve what you want set the quick jump to drop down menu and then set the next/previous links to page titles.

    Remember to select where you want it inserted - top or bottom of the page.

  76. 76 On September 16th, 2008, Lia Suzuki said:

    Thanks, Tarkan!

  77. 77 On September 18th, 2008, cerita said:

    thanks tarkan..

    go to location..

  78. 78 On September 25th, 2008, Marshal’s Blog» Blog 存档 » 使用wordpress日志分页插件 said:

    [...] 作者的博客日志:http://www.tarkan.info/20080106/tutorials/wordpress-plugin-multipage-tool-kit [...]

  79. 79 On November 17th, 2008, jessie said:

    this is certainly a plugin i will use in my long posts. :-)

Leave a Reply

  • Gallery

  • peru_008
  • Coming Soon

  • Review : Kenko DG Extension tubes
  • Review : Shure SE530 Earphones (PTH) In Depth Analysis
  • Ads

Spread the Word
slashdot
delicious
digg
technorati
reddit
magnolia
stumbleupon
yahoo
google
  • Ads