• i created 2 Custom Template Pages by using the setting of “onecolumn-page.php” .. because i don’t want Side Bar on these Pages..

    i m having problem, when i activate any side Bar Widget for other Pages, then my Custom Pages went on Eleven column and it shrink my Custom Template Pages and shows the Empty Side Bars. on the other Hand Widgets on Side Bar showing properly with Default Page Template.

    after this situation i try to modify the Theme Function (functions.php), and found column width setting on “skeleton_set_colwidth”.

    i added my template pages here like this:

    // Single Pages
    } elseif ( is_page() ) {
    $page_wide = is_page_template(‘onecolumn-page.php’);
    $page_wide = is_page_template(‘myfirstcustom-page.php’);
    $page_wide = is_page_template(‘mysecondtcustom-page.php’);
    // make sure no Page widgets are active
    if ( !is_active_sidebar(‘sidebar-2’) || $page_wide ) {
    $columns = ‘sixteen’;
    }

    }

    then it worked for only one custom Page at a time and other page remain shrink to Eleven Column.

    on this situation my Actual Question is.. how can i add Many One Column Custom Template Pages without having this issue.

  • The topic ‘Column Problem with Custom Template pages’ is closed to new replies.