solved Elastic Skin - Events Module tabs

PatriaCo
PatriaCo
@the-patria-company
8 years ago
349 posts
Does anyone know which tpl file I can find the code for these tabs in the events module?

I can't find it anywhere in the tpl files here: /jrEvent/templates/

Thanks for any help!


--
The Patria Company - patriaco.com / quality-trades.com / a-t.life - doing Jamroom since v3

updated by @the-patria-company: 08/31/16 07:50:49AM
michael
@michael
8 years ago
7,715 posts
They are registered 'profile_tab' s in the _init() function for the event module found at:
/modules/jrEvent/include.php

This part:
    // Profile tabs
    $_tmp = array(
        'label'  => 'List',
        'active' => 'on',
        'group'  => 'all'
    );
    jrCore_register_module_feature('jrProfile', 'profile_tab', 'jrEvent', 'default', $_tmp);

    // Profile tabs
    $_tmp = array(
        'label' => 'Calendar',
        'group' => 'all'
    );
    jrCore_register_module_feature('jrProfile', 'profile_tab', 'jrEvent', 'calendar', $_tmp);

Their styling is controlled by the template provided by the jrProfile module and found at:
/modules/jrProfile/templates/profile_tabs.tpl
PatriaCo
PatriaCo
@the-patria-company
8 years ago
349 posts
Is there any way to manage these or replace them with links or buttons?


--
The Patria Company - patriaco.com / quality-trades.com / a-t.life - doing Jamroom since v3
michael
@michael
8 years ago
7,715 posts
michael:..... Their styling is controlled by the template provided by the jrProfile module and found at:
/modules/jrProfile/templates/profile_tabs.tpl

Tags