Links trotz Ausblendung sichtbar

  • Seite 3 von 4
22.12.2019 22:07
avatar  julie
#31 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

Nein, funkt leider auch nicht.


 Antworten

 Beitrag melden
22.12.2019 22:08
avatar  Mike48
#32 RE: Links trotz Ausblendung sichtbar
avatar
Mitglied

In der Benutzergruppe Gäste musst du noch das Flag weg machen bei Einblick in "Wer ist Online" und Einblick der Mitgliederliste & Profile


www.friends-of-xobor.de (621181 - Template kann wechsel bei Pluin Tests)
www.seniorenclub-sel-koeln.de (578865 - V6 Template)

 Antworten

 Beitrag melden
22.12.2019 22:21
avatar  julie
#33 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

Das habe ich doch schon lange gemacht, gleich nach ERöffnung des Forums.


 Antworten

 Beitrag melden
22.12.2019 22:24
avatar  Mike48
#34 RE: Links trotz Ausblendung sichtbar
avatar
Mitglied

Scheinbar nicht, sonst würde Wer ist online weg sein.
Am besten schaust du nochmal nach


www.friends-of-xobor.de (621181 - Template kann wechsel bei Pluin Tests)
www.seniorenclub-sel-koeln.de (578865 - V6 Template)

 Antworten

 Beitrag melden
22.12.2019 22:33 (zuletzt bearbeitet: 22.12.2019 22:34)
avatar  julie
#35 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

DOCH
Wer ist online und die Mitgliederliste ist weg als Gast. Aber das FAQ ist noch da.


 Antworten

 Beitrag melden
22.12.2019 22:44
avatar  Mike48
#36 RE: Links trotz Ausblendung sichtbar
avatar
Mitglied

Wer ist Online geht doch nicht mit dem Flag in Usergruppe Gäste weg.

1
2
3
4
 
if( $(".nav-link[href*='anmeldung.php']").length > 0) {
$("#member_link, #useronline, #faq_link").remove();
}
 
 


www.friends-of-xobor.de (621181 - Template kann wechsel bei Pluin Tests)
www.seniorenclub-sel-koeln.de (578865 - V6 Template)

 Antworten

 Beitrag melden
22.12.2019 22:48 (zuletzt bearbeitet: 22.12.2019 22:52)
avatar  julie
#37 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

Hab ich auch nicht gesagt, das gehört zu den Rechteeinstellungen.

Mit dem Script ist das FAQ für Gäste jetzt auch weg. Jetzt probiere ich mich einzuloggen, was Mitglieder sehen können.


 Antworten

 Beitrag melden
22.12.2019 23:13
avatar  julie
#38 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

Als eingeloggter sieht man die Mitgliederliste und das FAQ Wer ist online fehlt. Das FAQ gehört komplett ausgeblendet, da es im Impressum&Datenschutz schon enthalten ist


 Antworten

 Beitrag melden
22.12.2019 23:17
avatar  Mike48
#39 RE: Links trotz Ausblendung sichtbar
avatar
Mitglied

Dann zeig mal was in der Fußzeile steht und im CSS.


www.friends-of-xobor.de (621181 - Template kann wechsel bei Pluin Tests)
www.seniorenclub-sel-koeln.de (578865 - V6 Template)

 Antworten

 Beitrag melden
22.12.2019 23:27
avatar  julie
#40 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

Fußzeile:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 
<script>
if(document.getElementsByClassName('mobileview').length == 0) {
// begin - nur im desktop ausführen

var Bild = "https://files.homepagemodules.de/b814060/f3t4p202n4_OPXlUryY.jpg"
var Bildbreite = "80%"; // max. Breite des Bildes
var Link = "https://www.amazon.de/ref=nav_logo"; // wohin soll das Bild verlinken
var Titel = "Amazon - Das perfekte Einkaufserlebnis"; // hier den Text für den angezeigten Titel eintragen

// ab hier bitte nichts mehr ändern
$('#foverview_stat3').append('<br><center><a href="'+Link+'"<a title="'+ Titel +'"target="_blank"><img width="'+Bildbreite+'" src="'+Bild+'" /></a></center>');

$.each(
$('.mposttime'),function(){
/*Position der öffnenden klammer abfragen*/
var klammerposition = $(this).html().indexOf('(');
if(klammerposition >1){
/*Wenn wir hier reinkommen gibt es eine Klammer - in diesem Fall entfernen wir alles was danach kommt:*/
var newcont = $(this).html().substring(0,klammerposition);
$(this).html(newcont);
}
}
);

if($('.treetalk').length) {
$('.answerContainer .tree_message_content').each(function(idx) {
$(this).find('small:last').text($(this).find('small:last').text().replace(/\(.*\)/,""));
});
}

if( $("#global-news-box-wrap a[href='./private.php']").length > 0 ) {
$('#navigation a[href="./private.php"]').prepend('<img class="blinker" title="PN" src="//files.homepagemodules.de/b814060/f3t4p172n2_QjMPUAkB.png">');
}

/* Mitgliederliste und Wer ist Online fuer Gaeste aus untere Navi entfernen */
$( document ).ready(function() { /* begin - DOM geladen - wird nur einmal in der Fusszeile gebraucht! */
if(!tuserID) {
$("#member_link, #useronline_link").hide();
}
}); /* end - DOM geladen */

if (!tuserID) { $(".messageinformation").hide(); }

// ende - nur im desktop ausführen
}
</script>
 



CSS:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
 
body {
background: #2a364f !important;
background-position: center center; background-attachment: fixed;
}
 
body {overflow-x: hidden;
font-size: 75%;
}
 
.box {width: 98%; margin-left: auto; margin-right: auto;}
 
.box .boxcontent, .boxcontent {
width: 100%;
z-index: 1;
box-shadow: 3px 0 13px #000000, -3px 0 13px #000000;
}

.content {
background-color: #727d88;
font-size: 14px;
text-align: left;
box-shadow: 3px 0 13px #000000, -3px 0 13px #000000;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
 
td.fstat {font-size: 13px;}
td.fdesc {border: none;}
 
.usercontent td h2 {
color: #5b6577;
}
ul.forum li { background: none;
border: none;
}
.header, .footer {
background: transparent !important;
background-repeat: repeat-x;
background-size: 100% 100%;
color: #000000;
margin: 0px auto;
overflow: visible;
position: relative;
text-align: left;
}
 
.footer {text-align: center !important;}

.lastactions li {
list-style: none outside none;
float: none;
border-bottom: 1px solid #bdc9d9 !important;
padding: 0px;
text-align: left;
color: #000000 !important;
font-size: 12px !important;
}

ul.legend {
margin: 10px;
color: #000000;
}

.portal.container {
width: 90% !important;
}

.embed-responsive iframe {max-width: 300px; max-height:200px}

#search,td #headerSearchSubmit {
display:none;
}

#navigation a:hover {
color: red;
}
 
td.fnew {
text-align: center;
vertical-align: middle;
width: 4%;
}
.treetalk a {
color: #0 !important;
}
 
.embed-responsive.embed-responsive-4by3 {
display: inline-block;
}
 
.cat_information .nnew {
color:firebrick;
}
 
.photolistitem.nnew small {
color:firebrick;
}
 
#fw-feed-items-scroll-area {overflow-y: scroll !important;}
 
div.sumo > small > a {
margin-left: -15px !important;
}

td.fposts {
border-right: 0px solid #9AC0CD;
text-align: center;
width: 10%;
}
 
#foverview_stat3 > table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(3) {display: none;}
 

.box.cat{margin-bottom: 2%;}
 

 
ul.navigation {
display: flex;
align-items: center;
justify-content: left;
margin-left: 5.2%;
margin-bottom: 1%;
}
 
.navigation_wrap, ul.navigation {background: none !important;
border: none;
padding: 3px;
 
}
 
.page_index #breadcrumbs {display: none;}
 
#breadcrumbs a, #legend_link a, .threadnp, .threadnp a {
color: #E6E6E6 !important;
}
 

.profilecell.rightcell .lastactions {max-height: 300px; overflow-y: scroll;}
 
.page_index .lastactions{max-height:215px !important;
padding-left: 3%;
}
 
#usercont_bottom.container {display: none;} /* Balken im Footer ausblenden */
 
.page_login, .page_anmeldung {width: 80%;} /* Breite der Dialogboxen Login und Registrierung */
.page_faq {width: 80%;} /* Breite der FAQ Seite */
.page_private, .page_private_read, .page_private_new {width: 70%;} /* Breite der PN Seiten */
.page_login .scroll-buttons {display: none !important;} /* Ausblendung Pfeile auf Loginseite */
.page_private_read .scroll-buttons {display: none !important;} /* Ausblendung Pfeile auf PN lesen */
.scroll-buttons img {opacity: 0.5;}
.scroll-buttons img:hover {opacity: 1.0;}
 
.umtext > div > p > img {max-width: 100%;} /* Breitenbegrenzung von Bildern in PN */
 
/* Zeilenhöhe und Positionierung in der PN Liste */
 
.pmlistwrap li,.mmain,.mfurther_wrap {height: 16px;}
.mfurther {margin-top: -4.5%;}
.mfurther_wrap img {margin-top: -9%;}
 
/* Ende PN Liste */
 

.page_index .lastactions {
max-height: 215px !important;
padding-left: 1%;
}

.content small {
font-size: 13px !important;
}
 
/* Größe von Bildern in Beiträgen begrenzen */
.mtext img {
max-width: 700px !important;
max-height: 500px !important;
}
 
.footer #faq_link {
display: none;
}

.page_index .fdesc strong{
font-size:14px;
}
 
.embed-responsive {
float: right;
padding: 5px;
}
 
.cc-window.cc-banner {
 
padding: 0.5em 0.5em;
 
font-size:14px;
 
background-color: rgba(0, 0, 0, 0.75);
 
line-height: 0.9em;
 
}
 

 
.cc-revoke, .cc-window {
 
font-family: Helvetica,Calibri,Arial,sans-serif;
 
line-height: 0.5em;
 
}
 

 
.cc-theme-classic .cc-btn:last-child {
 
background-color: rgb(204, 204, 204);
 
min-width: 60px !important;
 
}
 

 
.cc-color-override-688238583.cc-window {
 
color: rgb(255, 255, 255);
 
background-color: rgb(42,54,79)!important;
 
}

.cc-banner{
max-width:90%;
margin-left: auto;
margin-right: auto;
height:36px
}
 

div#breadcrumbs span img {
display: none !important;
}

<div class="youtube">
.youtube {float:right; }
 
@import url('https://fonts.googleapis.com/css?family=Oleo+Script');
.mtext,.mtext a{
font-size: 17px;
font-family: 'Oleo Script',Open Sans;
}
 
.content table {
color: #2E2E2E;
}
 
.xquoteable a{
color:#0000FF !important;
}
 
.messageAvatar img {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
display: inline-block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 94px;
margin: auto;
position: relative;
width: 94px;
background: transparent no-repeat scroll center center / cover;
border-radius: 50%;
box-shadow: 0.1rem 0.1rem 6px rgba(0, 0, 0, 0.4);
border: 3px solid #f8f9fa;
vertical-align: middle;
}
.messageAvatar {
background: transparent !important;
padding: 5px;
margin-top: 5px;
text-align: center;
overflow: hidden;
border: none !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;

}
 

.messageAvatar:hover {
cursor: default;
transform: rotate(360deg);
transition: all 0.9s ease-in-out 0s;
}
 
undefined: https://www.hpm-support.de/t544090f11769157-Avatar-drehen.html#msg7321666
 
 


 Antworten

 Beitrag melden
22.12.2019 23:55 (zuletzt bearbeitet: 22.12.2019 23:57)
avatar  Mike48
#41 RE: Links trotz Ausblendung sichtbar
avatar
Mitglied

Admin → Layout → Mobil → Eigenes HMTL/JS → Eigenes Javascript
Das vorherige ersetzen

1
2
3
 
if(!tuserID) {
$("#member_link, #useronline_link").remove();
}
 




Admin → Layout → Mobil → CSS/SCSS

1
2
3
 
#faq_link {
display: none;
}
 


www.friends-of-xobor.de (621181 - Template kann wechsel bei Pluin Tests)
www.seniorenclub-sel-koeln.de (578865 - V6 Template)

 Antworten

 Beitrag melden
23.12.2019 00:06 (zuletzt bearbeitet: 23.12.2019 00:12)
avatar  julie
#42 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

FAQ ist jetzt als eingeloggter weg. Mitgliederliste ist da. Wer ist online sieht man auch nicht.

Das habe ich jetzt im eigenen HTML:

if( $(".nav-link[href*='anmeldung.php']").length > 0) {
$("#member_link").remove();
}

if( $(".nav-link[href*='anmeldung.php']").length > 0) {
$("#member_link, #useronline, #faq_link").remove();
}

if(!tuserID) {
$("#member_link, #useronline_link").remove();
}


 Antworten

 Beitrag melden
23.12.2019 00:57
avatar  julie
#43 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

In der Desktopansicht sieht man als eingeloggter "wer ist online" wie am PC
Nur in der mobilen Ansicht sieht man den "wer ist online" Link nicht. Aber egal, bist ja schon weg. Danke jedenfalls für deine Hilfe.


 Antworten

 Beitrag melden
23.12.2019 10:41
avatar  Mike48
#44 RE: Links trotz Ausblendung sichtbar
avatar
Mitglied

Lösche die folgenden im Mobil - HTML

1
2
3
4
5
6
7
 
if( $(".nav-link[href*='anmeldung.php']").length > 0) {
$("#member_link").remove();
}
 
if( $(".nav-link[href*='anmeldung.php']").length > 0) {
$("#member_link, #useronline, #faq_link").remove();
}
 



Dann verbleibt in Mobil - HTML nur noch

1
2
3
 
if(!tuserID) {
$("#member_link, #useronline_link").remove();
}
 



Und damm machst du unter
Admin → Layout → Mobil → CSS/SCSS
das in CSS/SCCS

1
2
3
 
#faq_link {
display: none;
}
 


www.friends-of-xobor.de (621181 - Template kann wechsel bei Pluin Tests)
www.seniorenclub-sel-koeln.de (578865 - V6 Template)

 Antworten

 Beitrag melden
23.12.2019 11:13
avatar  julie
#45 RE: Links trotz Ausblendung sichtbar
ju
Mitglied

Leider auch nicht. "Wer ist online" sieht man nur auf der Desktop Ansicht. Sonst passt alles.


 Antworten

 Beitrag melden
Bereits Mitglied?
Jetzt anmelden!
Mitglied werden?
Jetzt registrieren!