Forum Replies Created
-
In reply to: [Resolved] BuddyPress and Constructor theme
Yes, I think that is possible. My solution is to try to get back to my original layout step by step and check after every change whether it causes the problem.
In reply to: [Resolved] BuddyPress and Constructor themeHugo. I deleted the entire Constructor Theme folder using FTP and then reinstalled the constructor theme. Presto, bingo! It worked flawlessly with 1.7! Woohoo! You have no idea how excited I am about that! So, a huge thanks for your help!
In reply to: [Resolved] BuddyPress and Constructor themeHugo.
Thanks very much for that follow-up information.
I don’t know what I should do about that. Should I just delete everything and start again?In reply to: [Resolved] BuddyPress and Constructor themesingle.php
/**
* @package WordPress
* @subpackage Constructor
*/
// requeried comments
wp_enqueue_script( ‘comment-reply’ );// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘single’);// load footer.php
get_footer();Just a note:
open and close php are removed as I think that is causing the entire file to not show up…In reply to: [Resolved] BuddyPress and Constructor themehmm… dont know where they go to…
index.php…
/**
* @package WordPress
* @subpackage constructor
*/
// Stupid Parser This is Theme support the Gravatar Service
// get_avatar();// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘index’);// load footer.php
get_footer();In reply to: [Resolved] BuddyPress and Constructor themeAnd here is index.php…
In reply to: [Resolved] BuddyPress and Constructor themehmm… I pasted all three, but only one showed up.. 2nd try… here is single.php…
In reply to: [Resolved] BuddyPress and Constructor themeHere is single.php…
Here is Page.php
<?php
/**
* @package WordPress
* @subpackage Constructor
*/
wp_enqueue_script( 'comment-reply' );// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout('page');// load footer.php
get_footer();Here is index.php…
Where should I look next and what should I change?
Thanks for your help.
Cheers
Roy