Home>Support>question regarding on how to split a page?

question regarding on how to split a page?

hi all, is it possible to split a page using tag?
or is there an alternative way doing it using pagebuilder?

thanks ahead, Eran.

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 9 years, 3 months ago Srikanth Kamath

    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. 9 years, 3 months ago Dan Comyns

    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. 9 years, 3 months ago Srikanth Kamath

    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.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More