Neler yeni

Foruma hoş geldin 👋, Ziyaretçi

Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.

  • Forumdan daha fazla yararlanmak için, profilinizi telefon numaranız 📱 ile doğrulayın ve daha ayrıcalıklı olun 😉
    Daha fazla bilgi!

Çözüldü Postbit ikon sorunu

Bu sorun verilen destek sayesinde çözüme ulaştırılmıştır.

Garfield

xFanatik
Aktif Lisans
SMS onaylı
Kullanıcı
Katılım
4 Nis 2020
Mesajlar
2,356
Çözümler
105
Destek istenen forum
https://www.ixir.gen.tr

yukarıdakı mesajda yer alan tarayıcı ve ısletım sıstemını eklentı orjınalındekı gibi en alt kısıma bağımsız olarak nasıl alabılırım?

 

Ekli dosyalar

  • asd.JPG
    asd.JPG
    17.3 KB · Görüntüleme: 19
  • Ekran Alıntısı.JPG
    Ekran Alıntısı.JPG
    46.1 KB · Görüntüleme: 17

Çözüldü Postbit ikon sorunu

extra.less şablonuna ekler misin

CSS:
@media only screen and (max-width:1230px) and (min-width:990px){

.iconspart {display:none;}

 }

@media only screen and (min-width: 480px) and (max-width: 767px) {

.iconspart {display:none;}

}

@media only screen and (max-width: 479px) {

.iconspart {display:none;}

}
Özel konum ayarlamanız gerek eklenti ayarlarında konum kısmında özel konum için kod verilmiş olmalı. Şayet varsa öyle bir kod o kodu message_macros içersinde ilgili yere yerleştirin.
 
hangi sablon, hangi kod.

Kod:
<xf:if is="!$xf.options.snog_osbrowser_permit || ($user.Privacy.snog_osb_view == 'everyone' || $user.Privacy.snog_osb_view == 'members' || $xf.visitor.is_admin)">
    <xf:if is="$xf.visitor.isMemberOf($xf.options.snog_osbrowser_usergroups)">
        <xf:css src="snog_osbrowser.css" />

        <xf:if is="{$xf.options.snog_osbrowser_type} == 1">
            <dl class="pairs pairs--justified pairs--noColon">
                <dt class="iconspart">
                    <xf:if is="$osb.os_icon">
                        <img {$osb.os_icon|raw} style="vertical-align:middle;" src="{$xf.options.boardUrl}/data/osbrowser/clear.png" height="16" width="16" data-xf-init="tooltip" data-trigger="auto" title="{$osb.os|for_attr}">
                    </xf:if>
                    <xf:if is="$osb.browser_icon">
                        <img {$osb.browser_icon|raw} style="vertical-align:middle;" src="{$xf.options.boardUrl}/data/osbrowser/clear.png" height="16" width="16" data-xf-init="tooltip" data-trigger="auto" title="{$osb.browser|for_attr}">
                    </xf:if>
                </dt>
                <dd style="width:0;"></dd>
            </dl>
        </xf:if>

        <xf:if is="{$xf.options.snog_osbrowser_type} == 2">
            <xf:if is="{$osb.os_icon}">
                <dl class="pairs pairs--justified pairs--noColon">
                    <dt class="browserpart"><img {$osb.os_icon|raw} style="vertical-align: middle;" src="{$xf.options.boardUrl}/data/osbrowser/clear.png" height="16" width="16" data-xf-init="tooltip" data-trigger="auto" title="{$osb.os|for_attr}"></dt>
                    <dd><div class="browser">{$osb.os}</div></dd>
                </dl>
            </xf:if>
            <xf:if is="{$osb.browser_icon}">
                <dl class="pairs pairs--justified pairs--noColon">
                    <dt class="browserpart"><img {$osb.browser_icon|raw} style="vertical-align: middle;" src="{$xf.options.boardUrl}/data/osbrowser/clear.png" height="16" width="16" data-xf-init="tooltip" data-trigger="auto" title="{$osb.browser|for_attr}"></dt>
                    <dd><div class="browser">{$osb.browser}</div></dd>
                </dl>
            </xf:if>
        </xf:if>

        <xf:if is="{$xf.options.snog_osbrowser_type} == 3">
            <xf:if is="{$osb.os}">
                <dl class="pairs pairs--justified">
                    <dt>{{ phrase('snog_osbrowser_os') }}</dt>
                    <dd style="width:75%"><div class="browsertext" data-xf-init="tooltip" data-trigger="auto" title="{$osb.os|for_attr}">{$osb.os}</div></dd>
                </dl>
            </xf:if>
            <xf:if is="{$osb.browser}">
                <dl class="pairs pairs--justified">
                    <dt>{{ phrase('snog_osbrowser_br') }}</dt>
                    <dd style="width:75%"><div class="browsertext" data-xf-init="tooltip" data-trigger="auto" title="{$osb.browser|for_attr}">{$osb.browser}</div></dd>
                </dl>
            </xf:if>
        </xf:if>
    </xf:if>
</xf:if>

Kod:
.iconspart{
    width:100%;
    text-align:center;
    height:20px;
}

.browserpart{
    height:20px;
    width:20px;
}

.browser {
    text-overflow:ellipsis;
    white-space:nowrap;
    word-wrap:normal;
    overflow:hidden;
    width:100%;
}

.browsertext {
    text-overflow:ellipsis;
    white-space:nowrap;
    word-wrap:normal;
    overflow:hidden;
    float:right;
    text-align:right;
    width:100%;
}


[CODE]<dl class="inputLabelPair">
    <dt>{{ phrase('snog_osbrowser_view_type') }}</dt>
    <dd>
        <xf:select name="privacy[snog_osb_view]" value="{$xf.visitor.Privacy.snog_osb_view}">
            <xf:option value="everyone">{{ phrase('all_visitors') }}</xf:option>
            <xf:option value="members">{{ phrase('members_only') }}</xf:option>
            <xf:option value="none">{{ phrase('nobody') }}</xf:option>
        </xf:select>
    </dd>
</dl>
 

Ekli dosyalar

  • Ekran Alıntısı.JPG
    Ekran Alıntısı.JPG
    51.6 KB · Görüntüleme: 5
message_macros isimli şablonda bulun ;
HTML:
                    <xf:if is="$extras.custom_fields">
                        <xf:macro template="custom_fields_macros" name="custom_fields_values"
                            arg-type="users"
                            arg-group="personal"
                            arg-set="{$user.Profile.custom_fields}"
                            arg-additionalFilters="{{ ['message'] }}"
                            arg-valueClass="pairs pairs--justified" />
                        <xf:if is="$user.canViewIdentities()">
                            <xf:macro template="custom_fields_macros" name="custom_fields_view"
                                arg-type="users"
                                arg-group="contact"
                                arg-set="{$user.Profile.custom_fields}"
                                arg-additionalFilters="{{ ['message'] }}"
                                arg-valueClass="pairs pairs--justified" />
                        </xf:if>
                    </xf:if>

Altına ekleyin yiyecekmi bakalım;

HTML:
<xf:include template="snog_osbrowser" />
Yada
HTML:
<xf:include template="snog_osbrowser_privacy" />
 
message_macros isimli şablonda bulun ;
HTML:
                    <xf:if is="$extras.custom_fields">
                        <xf:macro template="custom_fields_macros" name="custom_fields_values"
                            arg-type="users"
                            arg-group="personal"
                            arg-set="{$user.Profile.custom_fields}"
                            arg-additionalFilters="{{ ['message'] }}"
                            arg-valueClass="pairs pairs--justified" />
                        <xf:if is="$user.canViewIdentities()">
                            <xf:macro template="custom_fields_macros" name="custom_fields_view"
                                arg-type="users"
                                arg-group="contact"
                                arg-set="{$user.Profile.custom_fields}"
                                arg-additionalFilters="{{ ['message'] }}"
                                arg-valueClass="pairs pairs--justified" />
                        </xf:if>
                    </xf:if>

Altına ekleyin yiyecekmi bakalım;

HTML:
<xf:include template="snog_osbrowser" />
Yada
HTML:
<xf:include template="snog_osbrowser_privacy" />

tüm satırlara boyle numara yazdım sonra baktım sablona 3 benım ıstedıgım yerde cıkmıs demekkı kodu buraya koyucam :D

yaptım oldu.
 

Ekli dosyalar

  • Ekran Alıntısı.JPG
    Ekran Alıntısı.JPG
    62.4 KB · Görüntüleme: 5
Şunu dener misiniz.

CSS:
@media (max-width: (@xf-responsiveMedium))
{
    .message-userExtras .pairs.pairs--justified.pairs--noColon
    {
        display: none;
    }
}
 
extra.less şablonuna ekler misin

CSS:
@media only screen and (max-width:1230px) and (min-width:990px){

.iconspart {display:none;}

 }

@media only screen and (min-width: 480px) and (max-width: 767px) {

.iconspart {display:none;}

}

@media only screen and (max-width: 479px) {

.iconspart {display:none;}

}
 
Çözüm
extra.less şablonuna ekler misin

CSS:
@media only screen and (max-width:1230px) and (min-width:990px){

.iconspart {display:none;}

}

@media only screen and (min-width: 480px) and (max-width: 767px) {

.iconspart {display:none;}

}

@media only screen and (max-width: 479px) {

.iconspart {display:none;}

}

teşekkür ederim.
 

Foruma hoş geldin 👋, Ziyaretçi

Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız. Foruma üye olmak tamamen ücretsizdir.