Quote:
|
Originally Posted by fromtheranks
Hi,
I'm in the process up upgrading to 3.5.3/3.6.4 (see http://forum.bytesforall.com/showthread.php?t=13408). I have my strategy pretty well laid out except for one question:
I have a couple of custom pages (contact-ftr.php and tagcloud.php) built on Atahaualpa 3.3.3's index.php. Will these "port" over without re-writes or do I need to recreate these pages using Atahualpa's new index.php. I'm guessing I have to redo these but if not ...
Thanks,
DP Harshman
|
Hard to say without seeying your templates.
But you probably need to change a few lines in those templates to make them 3.6.x compatible.
I would compare the index.php of both version, and do a compare.
(for example use
notepad++ or
winmerge to compare)
Then you will see which things have changed and you can make the corresponding changes in your templates.
some examples:
PHP Code:
include (TEMPLATEPATH . '/functions/bfa_get_options.php');
global $bfa_ata;
get_header();
changed to:
PHP Code:
list($bfa_ata, $cols, $left_col, $left_col2, $right_col, $right_col2, $bfa_ata['h_blogtitle'], $bfa_ata['h_posttitle']) = bfa_get_options();
get_header();
extract($bfa_ata);
PHP Code:
bfa_center_content($bfa_ata['content_inside_loop']);
changed to:
PHP Code:
include 'bfa://content_inside_loop';