Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
hi all, is it possible to split a page using tag?
or is there an alternative way doing it using pagebuilder?
thanks ahead, Eran.
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.
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.
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..