Jump to content

Recommended Posts

Posted (edited)

ok AICI

Doar pe functia search nu iti apar acele imagini, ai incercat si pe alta tema sa vezi daca e lafel?

Daca poti pune aici hook-ul care il ai instalat sa ma uit prin el si sa iti spun de la ce este.

Edited by BebeGFX
Posted

Intra in FTP:  \public\style_images\master\profile\default_large.png

Inlocuieste default_large.png cu avatarul tau.

Dupa faci asta: Admin CP -> System Settings -> Members Tab -> User Profiles -> Allow users to use Gravatars (pune-o pe off)

 

 

 

  • gaby changed the title to Cum rezolv acest bug de la Tag Advenced?
Posted (edited)

ok Asta e care il am si eu : http://www70.zippyshare.com/v/s8yB0VCp/file.html

 

Acuma am observat, nu este de la acel hook !

Dute in - ACP - LOOK AND FEEL - TEMA TA - SEARCH - searchAdvancedForm si schimba tot ce ai acolo cu :

 

<style type='text/css'>
     @import url('{$this->settings['public_dir']}style_css/{$this->registry->output->skin['_csscacheid']}/calendar_select.css');
</style>
<script type='text/javascript' src='{$this->settings['public_dir']}js/3rd_party/calendar_date_select/calendar_date_select.js'></script>
<if test="calendarlocale:|:$this->settings['calendar_date_select_locale'] AND $this->settings['calendar_date_select_locale'] != 'en'">
    <script type='text/javascript' src='{$this->settings['public_dir']}js/3rd_party/calendar_date_select/locale/{$this->settings['calendar_date_select_locale']}.js'> </script>
</if>
{parse js_module="search"}
<if test="searchTermsRemoved:|:is_array( $removed_search_terms ) && count( $removed_search_terms )">
<p class='message error'>{$this->lang->words['removed_search_terms']} <strong>{parse expression="implode( ',', $removed_search_terms )"}</strong></p>
<br />
</if>
<if test="searchError:|:$msg">
<p class='message error'>{$msg}</p>
<br />
</if>
{parse replacement="header_start"}<h2 class='maintitle'>{$this->lang->words['search']}</h2>{parse replacement="header_end"}
<div class='ipsBox' id='main_search_form'>
    <form action="{parse url="app=core&amp;module=search&amp;section=search&amp;do=search" base="public"}&amp;fromsearch=1" method="post" id='search-box' >
        <input type='hidden' name='search_app' id='search_app' value='{$this->request['search_app']}' />
        <fieldset id='' class='ipsBox_container ipsPad'>
            <ul class='ipsForm_horizontal'>
                <li class='ipsField'>
                    <label for='query' class='ipsField_title'>{$this->lang->words['find_words']}</label>
                    <p class='ipsField_content'>
                        <input type='text' class='input_text' name='search_term' id='query' value='{$this->request['search_term']}' size='50' /><br />
                        <span class='desc lighter'>{$this->lang->words['s_andor_quotes']}</span>
                    </p>
                </li>
                <if test="count($filters)">
                    <li class='ipsField app_chooser'>
                        <label class='ipsField_title' for=''>{$this->lang->words['search_section']}</label>
                        <div class='ipsField_content'>
                            <ul id='sapps'>
                                <if test="IPSLib::appIsSearchable( 'forums', 'search' )">
                                    <li style='display: inline-block;' class='search_app' id='sapp_forums'>
                                        <input type='radio' data-allowtags='{$canTag[ 'forums' ]}' name='search_app' value='forums' id='radio_forums' <if test="$this->request['search_app'] == 'forums'">checked="checked"</if> /> <label for='radio_forums'>{IPSLib::getAppTitle( 'forums' )}</label>
                                    </li>
                                </if>
                                <if test="IPSLib::appIsSearchable( 'members', 'search' )">
                                    <li style='display: inline-block;' class='search_app' id='sapp_members'>
                                        <input type='radio' data-allowtags='{$canTag[ 'members' ]}' name='search_app' value='members' id='radio_members' <if test="$this->request['search_app'] == 'members'">checked="checked"</if> /> <label for='radio_members'>{IPSLib::getAppTitle( 'members' )}</label>
                                    </li>
                                </if>
                                <if test="IPSLib::appIsSearchable( 'core', 'search' )">
                                    <li style='display: inline-block;' class='search_app' id='sapp_core'>
                                        <input type='radio' data-allowtags='{$canTag[ 'core' ]}' name='search_app' value='core' id='radio_core' <if test="$this->request['search_app'] == 'core'">checked="checked"</if> /> <label for='radio_core'>{IPSLib::getAppTitle( 'core' )}</label>
                                    </li>
                                </if>
            
                                <foreach loop="appLoop:$this->registry->getApplications() as $app => $data">
                                    <if test="IPSLib::appIsSearchable( $app, 'search' ) AND !in_array( $app, array( 'forums', 'members', 'core' ) )">
                                        <li style='display: inline-block;' class='search_app' id='sapp_{$app}'>
                                            <input type='radio' data-allowtags='{$canTag[ $app ]}' name='search_app' value='{$app}' id='radio_{$app}' <if test="$app == $this->request['search_app']">checked="checked"</if> /> <label for='radio_{$app}'>{IPSLib::getAppTitle( $app )}</label>
                                        </li>
                                    </if>
                                </foreach>
                            </ul>
                        </div>
                    </li>
                </if>
            </ul>
        </fieldset>
        
        <fieldset id='other_filters' class='ipsBox_container ipsPad'>
            <ul class='ipsForm_horizontal'>
                <li class='ipsField ipsField_select clear'>
                    <label for='andor_type' class='ipsField_title'><strong>{$this->lang->words['matchlabel']}</strong></label>
                    <p class='ipsField_content'>
                        <if test="isFullText:|:$this->settings['use_fulltext'] AND $this->DB->checkBooleanFulltextSupport()">
                            <select name="andor_type" id="andor_type">
                                <option value="and" <if test="$this->settings['s_andor_type'] == 'and'">selected='selected'</if>>{$this->lang->words['s_andor_and']}</option>
                                <option value="or" <if test="$this->settings['s_andor_type'] == 'or'">selected='selected'</if>>{$this->lang->words['s_andor_or']}</option>
                            </select>
                            &nbsp;&nbsp;
                        </if>
                        
                        <select name="search_content" id="search_content">
                            <option value="both">{$this->lang->words['search_both_types']}</option>
                            <option value="titles">{$this->lang->words['search_titles_types']}</option>
                            <option value="content">{$this->lang->words['search_content_types']}</option>
                        </select>
                    </p>
                </li>
                <if test="tagyouareit:|:$canTag[ $current_app ]">
                    <li class='ipsField clear' id='tag_row'>
                        <label for='tags' class='ipsField_title'>{$this->lang->words['find_by_tags']}</label>
                        <p class='ipsField_content'>
                            <input type='text' class='input_text input' name='search_tags' id='tags' value='{$this->request['find_by_tags']}' size='50' />
                            <br />
                            <span class='desc lighter'>{$this->lang->words['find_by_tags_desc']}</span>
                        </p>
                    </li>
                </if>
                <li class='ipsField clear'>
                    <label for='author' class='ipsField_title'>{$this->lang->words['find_author']}</label>
                    <p class='ipsField_content'>
                        <input type='text' class='input_text input' name='search_author' id='author' value='{$this->request['search_author']}' size='50' />
                    </p>
                </li>
                <li class='ipsField clear'>
                    <label for='date_start' class='ipsField_title'>{$this->lang->words['find_date']}</label>
                    <p class='ipsField_content'>
                        <input type='text' class='input_text' name='search_date_start' id='date_start' value='{$this->request['_search_date_start']}' /><img src='{$this->settings['img_url']}/date.png' alt='' id='date_start_icon' style='cursor: pointer' /> &nbsp;
                        <strong>{$this->lang->words['to']}</strong> &nbsp;<input type='text' class='input_text' name='search_date_end' id='date_end' value='{$this->request['_search_date_end']}' /><img src='{$this->settings['img_url']}/date.png' alt='' id='date_end_icon' style='cursor: pointer' />
                    </p>
                </li>
                
            </ul>
        </fieldset>
        <if test="count($filters)">
            <foreach loop="$filters as $app => $data">
                <div id='app_filter_{$app}' class='ipsBox_container ipsPad' style='display: none'>
                    <if test="!empty($data['html'])">
                        {$data['html']}
                    </if>
                    <if test="count($data['sortDropDown'])">
                        <fieldset class='{parse striping="search"}'>
                            <if test="is_array($data['sortDropIn']) AND count( $data['sortDropIn'] )">
                                <foreach loop="$data['sortDropIn'] as $id => $_data">
                                    <ul class='ipsForm_horizontal'>
                                        <li class='ipsField ipsField_select'>
                                            <label class='ipsField_title' for='search_by_{$_data[0]}'><if test="! $id">{$this->lang->words['s_member_sin']}<else />&nbsp;</if></label>
                                            <p class='ipsField_content'>
                                                <input type='radio' name='search_app_filters[$app][searchInKey]' value='{$_data[0]}' <if test="$this->request['search_app_filters'][$app]['searchInKey'] == $_data[0] || ( ! $this->request['search_app_filters'][$app]['searchInKey'] AND ! $id )">checked="checked"</if> /> $_data[1]
                                                <select name='search_app_filters[$app][{$_data[0]}][sortKey]' class='input_select' style='width:auto'>
                                                <foreach loop="$data['sortDropDown'][$_data[0]] as $k => $l">
                                                    <option value='$k' <if test="$this->request['search_app_filters'][$app][$_data[0]]['sortKey'.$_data[0]] == $k">selected='selected'</if>>{$l}</option>
                                                </foreach>
                                                </select>
                                                <select name='search_app_filters[$app][{$_data[0]}][sortDir]' class='input_select' style='width:auto'>
                                                    <option value='0' <if test="!$this->request['search_app_filters'][$app][$_data[0]]['sortDir']">selected='selected'</if>>{$this->lang->words['s_search_type_o_0']}</option>
                                                    <option value='1' <if test="$this->request['search_app_filters'][$app][$_data[0]]['sortDir']">selected='selected'</if>>{$this->lang->words['s_search_type_o_1']}</option>
                                                </select>
                                            </p>
                                        </li>
                                    </ul>
                                </foreach>
                            <else />
                                <ul class='ipsForm_horizontal'>
                                    <li class='ipsField ipsField_select'>
                                        <label class='ipsField_title' for='search_by'>{$this->lang->words['s_search_type']}</label>
                                        <p class='ipsField_content'>
                                            <select name='search_app_filters[$app][sortKey]' id='search_sort_by_{$app}' class='input_select' style='width:auto'>
                                            <foreach loop="$data['sortDropDown'] as $k => $l">
                                                <option value='$k' <if test="$this->request['search_app_filters'][$app]['sortKey'] == $k">selected='selected'</if>>{$l}</option>
                                            </foreach>
                                            </select>
                                            <select name='search_app_filters[$app][sortDir]' id='search_sort_order_{$app}' class='input_select' style='width:auto'>
                                                <option value='0' <if test="!$this->request['search_app_filters'][$app]['sortDir']">selected='selected'</if>>{$this->lang->words['s_search_type_o_0']}</option>
                                                <option value='1' <if test="$this->request['search_app_filters'][$app]['sortDir']">selected='selected'</if>>{$this->lang->words['s_search_type_o_1']}</option>
                                            </select>
                                        </p>
                                    </li>
                                </ul>
                            </if>
                        </fieldset>
                    </if>
                </div>
            </foreach>
        </if>
        <fieldset class='submit'>
            <input type='submit' name='submit' class='input_submit' value='{$this->lang->words['do_search']}'> {$this->lang->words['or']} <a href='{$this->settings['board_url']}' title='{$this->lang->words['cancel']}' class='cancel'>{$this->lang->words['cancel']}</a>
        </fieldset>
    </form>
</div>{parse replacement="box_end"}

 

Nu merge sa pun spoiler.

Scuzati 2x post, acuma am observat ca nu dadusem edit.

Edited by BebeGFX
Posted

La fel se vede!

Vad ca si pe skinul celor de la IPB default se vede lafel. Posibil prin setari la System sa nu fie conectat ceva la fisierul respectiv.

Alte idei nu mai am.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.