This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

Replies

3
  1. Srikanth Kamath 10 years, 8 months ago

    I have not done it for long hence test it out, there is two ways to do this,

    a) edit your function.php

    // Start Add NextPage Button
    // --------------------------------------------------------------------------
    add_filter('mce_buttons','wysiwyg_editor');
    function wysiwyg_editor($mce_buttons) {
      $pos = array_search('wp_more',$mce_buttons,true);
      if ($pos !== false) {
          $tmp_buttons = array_slice($mce_buttons, 0, $pos+1);
          $tmp_buttons[] = 'wp_page';
          $mce_buttons = array_merge($tmp_buttons, array_slice($mce_buttons, $pos+1));
      }
      return $mce_buttons;
    }
    // --------------------------------------------------------------------------
    // End Add NextPage Button
    // --------------------------------------------------------------------------

    with the above mod, in your visual editor you will now get “nextpage” insert it where you want to split the page.

    b) the other way is use a wordpress plugin “Adjustly Nextpage” not sure if this plugin works I never used it. it does the same above.

  2. Dan Comyns 10 years, 8 months ago

    hi thanks for your comment but i am kind of newbie.
    so i managed to open my function.php. but now where should i copy the code on the editor. I tried to mount it on sevreal places but my website crashed.

    thanks.

  3. Srikanth Kamath 10 years, 8 months ago

    ok, no issues.. I would require a few basic information. is this hosted wordpress site or local host.. ? becuase the first step in customisation is to create a child theme (view TuT).

    no need to follow the TuT its for your understanding on Child Theme. do the following to install the child theme

    a) download : https://siteorigin.com/wp-content/uploads/2014/12/vantage-child-vanilla.zip
    b) Install the ZIP from Appearance > Themes > Add New: Upload Theme.

    and then copy over the “function.php” from Vantage or the SiteOrigin theme that you are using to your child theme folder “vantage-child-vanilla”

    Activate the Child theme. (the TuT Video would give you the idea). and then goto Appearance > Themes > Editor , by default the style.css is opened but you can change to function.php (look on the right hand side).

    copy paste the code i posted earlier. it take a while to understand wordpress and then SiteOrigin themes, but max two week you will have the basic..

    hope this help.. Happy WordPressing..

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread