Reclame Popup Scherm
Nu heb ik een probleem. Iedere keer als ik de pagina refresh of als ik
bijvoorbeeld op een andere link in het menu klik, dan verschijnt de
pop up telkens opnieuw.
Hoe kan ik ervoor zorgen dat hij maar eenmaal komt per sessie.
Dit kan geloof ik door middel van cookies ofzo gedaan worden.
De code die ik nou gebruik is (java):
<script language="javascript">
function ShowPopup() {
document.getElementById("PopupPanel").style.display = "block";
}
function HidePopup() {
document.getElementById("PopupPanel").style.display = "none";
}
</script>
dat snap ik haha ik was te lui script erachter te typen daarom heb ik het in de juiste sectie van het forum geplaatst. Ik zal even kijken bij de link en zal wat laten weten.
Doe de volgende keer toch maar wel, java is namelijk een compleet andere programmeertaal.
Ik kom er niet uit. de popup blijft bij iedere refresh terug komen...?
Welke code gebruik je?
<div id="dnn_ctr557_ModuleContent" class="Laumen - Rad popupContent">
<style type="text/css">
.DisabledBackground {
background-color:#111;
opacity: 0.65;
filter:alpha(opacity=65);
position:fixed;
z-index: 9001;
top:0px;
left:0px;
width:100%;
height: 100%;
}
.Popup {
position: fixed;
background-color:#2c61ad;
top: 50%;
left: 50%;
margin-left: -400px;
margin-top: -296px;
width:800px;
height:594px;
z-index: 9002;
border: solid 5px #333333;
}
.PopupContent
{
position: relative;
width: 800px;
height: 594px;
padding: 0px 30px 30px 30px;
}
.PopupContent h2
{
font-size: 30px;
font-weight: normal;
}
.Popup .CloseButton
{
position: absolute;
right:10px;
top: 10px;
}
</style>
<script language="javascript">
function ShowPopup() {
document.getElementById("PopupPanel").style.display = "block";
}
function HidePopup() {
document.getElementById("PopupPanel").style.display = "none";
}
</script>
<div id="PopupPanel">
<div id="dnn_ctr557_Popup_PopupPanel">
<div class="DisabledBackground"></div>
<div class="Popup">
<input type="image" name="dnn$ctr557$Popup$CloseImageButton" id="dnn_ctr557_Popup_CloseImageButton" class="CloseButton" src="templates/laumen/images/sluit.gif" onclick="HidePopup(); return false;" style="border-width:0px;" />
<img id="dnn_ctr557_Popup_BackgroundImage" src="images/reclame.jpg" style="border-width:0px;" />
</div>
</div>
</div>
je doet nog steeds niks met cookies
in het laatste geval kun je in een php sessie afvangen
Vincent Huisman op 20/09/2011 22:29:54:
je doet nog steeds niks met cookies
Ja dat komt omdat ik niet weet hoe dat werkt met die cookies. Heb de link gelezen maar weet nog steeds niet wat ik in mijn geval moet toevoegen.
Toevoeging op 21/09/2011 09:17:04:
Ger van Steenderen op 20/09/2011 22:31:52:
werk je puur in html, of gebruik je ook php?
in het laatste geval kun je in een php sessie afvangen
in het laatste geval kun je in een php sessie afvangen
Is een index.php dus ik zou er ook php in kunnen verwerken. Alleen wat precies?
in dat geval aan het begin van de index.php:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
session_start();
if (!isset($_SESSION('isVisitor')) {
$bodyonload = ' onload="javascript:ShowPopup();"'
$_SESSION('isVisitor') = 'something');
}
else {
$bodyonload = '';
}
?>
<body<?php echo $bodyonload ?>>
session_start();
if (!isset($_SESSION('isVisitor')) {
$bodyonload = ' onload="javascript:ShowPopup();"'
$_SESSION('isVisitor') = 'something');
}
else {
$bodyonload = '';
}
?>
<body<?php echo $bodyonload ?>>
Ger van Steenderen op 21/09/2011 11:59:51:
ik neem aan dat je dat popup venster oproept in de body onload.
in dat geval aan het begin van de index.php:
in dat geval aan het begin van de index.php:
Code (php)
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
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
<?php
session_start();
if (!isset($_SESSION('isVisitor')) {
$bodyonload = ' onload="javascript:ShowPopup();"'
$_SESSION('isVisitor') = 'something');
}
else {
$bodyonload = '';
}
?>
<body<?php echo $bodyonload ?>>
[/quote]
Nee verder heb ik niks verwerkt in php. alleen puur het script wat ik eerder vermeld had.
Dit is mijn volledige code van de index.php
<?php
defined('_JEXEC') or die('Restricted access');
$url = clone(JURI::getInstance());
$path = $this->baseurl.'/templates/'.$this->template;
$showrightColumn = $this->countModules('right');
$showFlashColumn = $this->countModules('user1');
$showCustomBoxColumn = $this->countModules('user2');
if(JRequest::getCmd('task') != 'edit') $Edit = false; else $Edit = true;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
<head>
<jdoc:include type="head" />
<script src="<?php echo $path ?>/scripts/cookie.js" type="text/javascript"></script>
<script type="text/javascript" src="<?php echo $this->baseurl?>/media/system/js/mootools.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/maxheight.js"></script>
<!--equal-->
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-yui.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/AGPresquire_oblique_400.font.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-replace.js"></script>
<link rel="stylesheet" href="<?php echo $path ?>/css/constant.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $path ?>/css/template.css" type="text/css" />
<!--[if IE 6]>
<script type="text/javascript" src="<?php echo $path ?>/scripts/ie_png.js"></script>
<script type="text/javascript">
ie_png.fix('.png');
</script>
<![endif]-->
</head>
<body id="body">
<div class="bg-light png">
<div class="main">
<!--header-->
<div class="row-search clear">
<div class="fright">
<jdoc:include type="modules" name="user4" style="search" />
</div>
<div class="fleft">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
</div>
<div class="wrapper-top png clear"><span class="png"><span class="png"></span></span></div>
<div class="wrapper-left png clear">
<div class="wrapper-right png clear">
<div class="row-header">
<div class="fright row-top-menu">
<jdoc:include type="modules" name="user3" style="topmenu" />
</div>
<div class="fleft row-logo">
<h1 id="logo"><img class="png" src="<?php echo $path ?>/images/logo.png" alt="Laumen " /></a></h1>
</div>
</div>
</div>
</div>
<div class="wrapper-bottom png clear"><span class="png"><span class="png"></span></span></div>
<?php if ($showFlashColumn) : ?>
<div class="row-flash clear">
<jdoc:include type="modules" name="user1" />
</div>
<?php endif;?>
<!--content-->
<div class="clear indent2-top">
<div class="wrapper-top png clear"><span class="png"><span class="png"></span></span></div>
<div class="wrapper-left png clear">
<div class="wrapper-right png clear">
<div id="content">
<div class="clear">
<!--right-->
<?php if ($showrightColumn && !$Edit) : ?>
<div id="right" class="equal">
<div class="right-indent">
<jdoc:include type="modules" name="right" style="wrapper_box" />
</div>
</div>
<?php endif;?>
<!--center-->
<div id="container" class="equal">
<?php if ($showCustomBoxColumn) : ?>
<div class="CustomBox clear">
<jdoc:include type="modules" name="user2" style="xhtml" />
</div>
<?php endif;?>
<div class="clear">
<?php if ($this->getBuffer('message')) : ?>
<div class="error err-space">
<jdoc:include type="message" />
</div>
<?php endif; ?>
<jdoc:include type="component" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper-bottom png clear"><span class="png"><span class="png"></span></span></div>
</div>
<!--footer-banner-->
<div class="row-banner clear">
<jdoc:include type="modules" name="footer" style="xhtml" />
</div>
</div>
</div>
</div>
<script type="text/javascript"> Cufon.now(); </script>
<div id="dnn_ctr557_ModuleContent" class="Laumen - Rad popupContent">
<style type="text/css">
.DisabledBackground {
background-color:#111;
opacity: 0.65;
filter:alpha(opacity=65);
position:fixed;
z-index: 9001;
top:0px;
left:0px;
width:100%;
height: 100%;
}
.Popup {
position: fixed;
background-color:#2c61ad;
top: 50%;
left: 50%;
margin-left: -400px;
margin-top: -296px;
width:800px;
height:594px;
z-index: 9002;
border: solid 5px #333333;
}
.PopupContent
{
position: relative;
width: 800px;
height: 594px;
padding: 0px 30px 30px 30px;
}
.PopupContent h2
{
font-size: 30px;
font-weight: normal;
}
.Popup .CloseButton
{
position: absolute;
right:10px;
top: 10px;
}
</style>
<script language="javascript">
function ShowPopup() {
document.getElementById("PopupPanel").style.display = "block";
}
function HidePopup() {
document.getElementById("PopupPanel").style.display = "none";
}
window.onload = ShowPopup;
</script>
<div id="PopupPanel" style="display: none;">
<div id="dnn_ctr557_Popup_PopupPanel">
<div class="DisabledBackground"></div>
<div class="Popup">
<input type="image" name="dnn$ctr557$Popup$CloseImageButton" id="dnn_ctr557_Popup_CloseImageButton" class="CloseButton" src="templates/laumen/images/sluit.gif" onclick="HidePopup(); return false;" style="border-width:0px;" />
<img id="dnn_ctr557_Popup_BackgroundImage" src="images/reclame.jpg" style="border-width:0px;" />
</div>
</div>
</div>
</body>
</html>
session_start();
if (!isset($_SESSION('isVisitor')) {
$bodyonload = ' onload="javascript:ShowPopup();"'
$_SESSION('isVisitor') = 'something');
}
else {
$bodyonload = '';
}
?>
<body<?php echo $bodyonload ?>>
[/quote]
Nee verder heb ik niks verwerkt in php. alleen puur het script wat ik eerder vermeld had.
Dit is mijn volledige code van de index.php
<?php
defined('_JEXEC') or die('Restricted access');
$url = clone(JURI::getInstance());
$path = $this->baseurl.'/templates/'.$this->template;
$showrightColumn = $this->countModules('right');
$showFlashColumn = $this->countModules('user1');
$showCustomBoxColumn = $this->countModules('user2');
if(JRequest::getCmd('task') != 'edit') $Edit = false; else $Edit = true;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
<head>
<jdoc:include type="head" />
<script src="<?php echo $path ?>/scripts/cookie.js" type="text/javascript"></script>
<script type="text/javascript" src="<?php echo $this->baseurl?>/media/system/js/mootools.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/maxheight.js"></script>
<!--equal-->
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-yui.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/AGPresquire_oblique_400.font.js"></script>
<script type="text/javascript" src="<?php echo $path ?>/scripts/cufon-replace.js"></script>
<link rel="stylesheet" href="<?php echo $path ?>/css/constant.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $path ?>/css/template.css" type="text/css" />
<!--[if IE 6]>
<script type="text/javascript" src="<?php echo $path ?>/scripts/ie_png.js"></script>
<script type="text/javascript">
ie_png.fix('.png');
</script>
<![endif]-->
</head>
<body id="body">
<div class="bg-light png">
<div class="main">
<!--header-->
<div class="row-search clear">
<div class="fright">
<jdoc:include type="modules" name="user4" style="search" />
</div>
<div class="fleft">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
</div>
<div class="wrapper-top png clear"><span class="png"><span class="png"></span></span></div>
<div class="wrapper-left png clear">
<div class="wrapper-right png clear">
<div class="row-header">
<div class="fright row-top-menu">
<jdoc:include type="modules" name="user3" style="topmenu" />
</div>
<div class="fleft row-logo">
<h1 id="logo"><img class="png" src="<?php echo $path ?>/images/logo.png" alt="Laumen " /></a></h1>
</div>
</div>
</div>
</div>
<div class="wrapper-bottom png clear"><span class="png"><span class="png"></span></span></div>
<?php if ($showFlashColumn) : ?>
<div class="row-flash clear">
<jdoc:include type="modules" name="user1" />
</div>
<?php endif;?>
<!--content-->
<div class="clear indent2-top">
<div class="wrapper-top png clear"><span class="png"><span class="png"></span></span></div>
<div class="wrapper-left png clear">
<div class="wrapper-right png clear">
<div id="content">
<div class="clear">
<!--right-->
<?php if ($showrightColumn && !$Edit) : ?>
<div id="right" class="equal">
<div class="right-indent">
<jdoc:include type="modules" name="right" style="wrapper_box" />
</div>
</div>
<?php endif;?>
<!--center-->
<div id="container" class="equal">
<?php if ($showCustomBoxColumn) : ?>
<div class="CustomBox clear">
<jdoc:include type="modules" name="user2" style="xhtml" />
</div>
<?php endif;?>
<div class="clear">
<?php if ($this->getBuffer('message')) : ?>
<div class="error err-space">
<jdoc:include type="message" />
</div>
<?php endif; ?>
<jdoc:include type="component" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper-bottom png clear"><span class="png"><span class="png"></span></span></div>
</div>
<!--footer-banner-->
<div class="row-banner clear">
<jdoc:include type="modules" name="footer" style="xhtml" />
</div>
</div>
</div>
</div>
<script type="text/javascript"> Cufon.now(); </script>
<div id="dnn_ctr557_ModuleContent" class="Laumen - Rad popupContent">
<style type="text/css">
.DisabledBackground {
background-color:#111;
opacity: 0.65;
filter:alpha(opacity=65);
position:fixed;
z-index: 9001;
top:0px;
left:0px;
width:100%;
height: 100%;
}
.Popup {
position: fixed;
background-color:#2c61ad;
top: 50%;
left: 50%;
margin-left: -400px;
margin-top: -296px;
width:800px;
height:594px;
z-index: 9002;
border: solid 5px #333333;
}
.PopupContent
{
position: relative;
width: 800px;
height: 594px;
padding: 0px 30px 30px 30px;
}
.PopupContent h2
{
font-size: 30px;
font-weight: normal;
}
.Popup .CloseButton
{
position: absolute;
right:10px;
top: 10px;
}
</style>
<script language="javascript">
function ShowPopup() {
document.getElementById("PopupPanel").style.display = "block";
}
function HidePopup() {
document.getElementById("PopupPanel").style.display = "none";
}
window.onload = ShowPopup;
</script>
<div id="PopupPanel" style="display: none;">
<div id="dnn_ctr557_Popup_PopupPanel">
<div class="DisabledBackground"></div>
<div class="Popup">
<input type="image" name="dnn$ctr557$Popup$CloseImageButton" id="dnn_ctr557_Popup_CloseImageButton" class="CloseButton" src="templates/laumen/images/sluit.gif" onclick="HidePopup(); return false;" style="border-width:0px;" />
<img id="dnn_ctr557_Popup_BackgroundImage" src="images/reclame.jpg" style="border-width:0px;" />
</div>
</div>
</div>
</body>
</html>
-- Ralf -- op 21/09/2011 09:15:53:
Ja dat komt omdat ik niet weet hoe dat werkt met die cookies. Heb de link gelezen maar weet nog steeds niet wat ik in mijn geval moet toevoegen.
Ja dat komt omdat ik niet weet hoe dat werkt met die cookies. Heb de link gelezen maar weet nog steeds niet wat ik in mijn geval moet toevoegen.
Wat dacht je er van om wat te experimenteren?
Jacco Brandt op 21/09/2011 14:31:36:
Wat dacht je er van om wat te experimenteren?
-- Ralf -- op 21/09/2011 09:15:53:
Ja dat komt omdat ik niet weet hoe dat werkt met die cookies. Heb de link gelezen maar weet nog steeds niet wat ik in mijn geval moet toevoegen.
Ja dat komt omdat ik niet weet hoe dat werkt met die cookies. Heb de link gelezen maar weet nog steeds niet wat ik in mijn geval moet toevoegen.
Wat dacht je er van om wat te experimenteren?
Heb al van alles geprobeerd
Ik ben altijd erg blij met mijn popup-blocker.
- SanThe - op 21/09/2011 16:53:09:
Ik ben altijd erg blij met mijn popup-blocker.
Voorkomt ie ook javascripts popup layers?
Geen idee, ik heb gewoon nooit popups.
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
el = document.getElementById('postError');
errEl = document.getElementById('postErrorBody');
sender = f.elements['sender'].value;
if (sender == '') {
errMsg = "Je moet een naam opgeven<br />om op deze foto te kunnen regeren!!";
el.style.display = 'block'
errEl.innerHTML = errMsg;
}
errEl = document.getElementById('postErrorBody');
sender = f.elements['sender'].value;
if (sender == '') {
errMsg = "Je moet een naam opgeven<br />om op deze foto te kunnen regeren!!";
el.style.display = 'block'
errEl.innerHTML = errMsg;
}
@Ger, ik wel;)
javascript uitzetten :+)