3093 Posts in 875 Topics by 654 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 522 Views |
-
shortcode problem

24 February 2011 at 11:04pm Last edited: 24 February 2011 11:17pm
hi
i'm tring to make shortcode
by the tutorial http://www.ssbits.com/tutorials/2010/2-4-using-short-codes-to-embed-a-youtube-video/ and some posts in forum i made this
_config.php
ShortcodeParser::get('default')->register('ListaKategorii',array('StaticPage','ListaKategoriiShortCode'));
StaticPage.php
class StaticPage extends SiteTree {
function ListaKategoriiShortCode() {
return $this->renderWith('ListaKategorii');
}}
class StaticPage_Controller extends DB_Controller {
}ListaKategorii.ss (in Includes folder)
some Lorem Ipsum text
now putting in tinyMCE text [listaKategorii] but it doesn't work
-
Re: shortcode problem

24 February 2011 at 11:11pm Last edited: 24 February 2011 11:32pm
[solved]
change ListaKategoriiShortCode() function to this
public function ListaKategoriiShortCode() {
$template = new SSViewer('ListaKategorii');
return $template->process();
}
| 522 Views | ||
|
Page:
1
|
Go to Top |

