Try with a small snippet of code…
function SP() {
return spcSimplePress::instance();
}
?
Try with a small snippet of code…
function SP() {
return spcSimplePress::instance();
}
?
my try… not working locally so trying here…
function sp_is_forum_page() {
global $spIsForum, $wp_query;
if ((is_page()) && ($wp_query->post->ID == sp_get_option(‘sfpage’))) {
$spIsForum = true;
sp_load_current_user();
include_once SPBOOT.’sp-load-forum.php’;
}
}
nope… and all my spacing gets lost too…
for grins, going to try from IE Edge…
function sp_is_forum_page() {
global $spIsForum, $wp_query;
if ((is_page()) && ($wp_query->post->ID == sp_get_option(‘sfpage’))) {
$spIsForum = true;
sp_load_current_user();
include_once SPBOOT.’sp-load-forum.php’;
}
}
might as well try from FF too…
function sp_is_forum_page() {
global $spIsForum, $wp_query;
if ((is_page()) && ($wp_query->post->ID == sp_get_option(‘sfpage’))) {
$spIsForum = true;
sp_load_current_user();
include_once SPBOOT.’sp-load-forum.php’;
}
}
same, it looks…