1. 论坛系统升级为Xenforo,欢迎大家测试!
    排除公告

pivotx技巧收集

本帖由 laogui2009-04-20 发布。版面名称:源码讨论

  1. Standme

    Standme New Member

    注册:
    2005-09-04
    帖子:
    89
    赞:
    1
    我草,这个问题解决。:cool:

    修改forms.php,在后台增加对category模板的设置:
    修改function getWeblogForm2(),添加内容:

    PHP:
    $templateoptions templateOptions($templates'category', array('_sub_''_aux_'));//增加category模板

        
    $form->add( array(
            
    'type' => 'select',
            
    'name' => 'category_template',
            
    'label' => __('Category Template'),
            
    'value' => '',
            
    'options' => $templateoptions,
            
    'text' => makeJtip(__('Category Template'), __('The Template which determines the layout of your archives. This can be the same as "Frontpage Template".'))
        ));
    修改modules/module_parser.php,renderWeblog()函数里增加一个判断使之适应category模板:
    PHP:
    if (!empty($this->modifier['category']) || isset($this->modifier['offset'])) {
                
    $template $PIVOTX['weblogs']->get('''category_template');
            } else   {
                
    $template $PIVOTX['weblogs']->get('''front_template');
            }
    这样category模板就不受frontpage模板的限制了。

    这样我就用pivotx对我那个站点进行改版去鸟 :)
     
  2. laogui

    laogui Administrator
    管理成员

    注册:
    2005-08-30
    帖子:
    15,216
    赞:
    35
    高手啊,懂PHP就是好
     
  3. deadfire

    deadfire New Member

    注册:
    2007-11-13
    帖子:
    621
    赞:
    0
    好,准备用用这个了
     
  4. panyituan

    panyituan New Member

    注册:
    2009-01-27
    帖子:
    19
    赞:
    0
    学习啊
     
  5. znier

    znier New Member

    注册:
    2009-05-07
    帖子:
    45
    赞:
    0
    这个不会,有时间学习学习一下
     
  6. Sunya

    Sunya Member

    注册:
    2005-09-09
    帖子:
    954
    赞:
    1
    跟着老鬼折腾会死人的, drupal 就是一个php框架,,囧..
     
  7. ANBYS

    ANBYS New Member

    注册:
    2010-05-23
    帖子:
    39
    赞:
    0
    pivotx新手,前来学习
     
  8. yzzjay

    yzzjay New Member

    注册:
    2010-06-10
    帖子:
    8
    赞:
    0
    没有研究过哈
     
  9. 夜很凄美

    夜很凄美 New Member

    注册:
    2010-09-15
    帖子:
    43
    赞:
    0
    应该不错吧