Hulp! Knop text verdwijnt na klikken van knop
Onder mijn slider heb ik een knop dat mensen doorstuurt naar een nieuwe link in een nieuwe tablad.
Maar na dat je op klik hier klikt en terug gaat naar de site weer is de text in de knop verdwenen.
Http://persistest.nl
Wordpress
Code https://codepen.io/anon/pen/doREEO
Gehele sectie code
https://codepen.io/anon/pen/qdjzWN
Codepen.io zal vast niet eeuwig de code laten staan...
Verder werkt er geen PHP in Codepen.io ;)
Gewijzigd op 13/06/2015 14:32:01 door - Ariën -
Toevoeging op 13/06/2015 14:33:21:
Gehele Text area
if(!function_exists("action_area")){
function action_area($action){
global $post;
if(isset($post) && !empty($post) && isset($action) && $action == "on"){
$action_text = get_post_meta($post->ID, "action_text", true);
$action_button_text = get_post_meta($post->ID, "action_button_text", true);
$action_link = get_post_meta($post->ID, "action_link", true);
$action_class = get_post_meta($post->ID, "action_class", true);
$heading_class = (!empty($action_button_text) ? "col-lg-9 col-md-8 col-sm-12 col-xs-12 xs-padding-left-15" : "col-lg-12 col-md-12 col-sm-12 col-xs-12 xs-padding-left-15"); ?>
<section class="message-wrap">
<div class="container">
<div class="row">
<h2 class=""></h2>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12 xs-padding-right-15"> <a href=" " class="default-btn pull-right action_button
Code (php)
</div>
</div>
<div class="message-shadow"></div>
</section>
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
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
<?php
}
}
}
[size=xsmall][i]Toevoeging op 13/06/2015 14:34:26:[/i][/size]
Knop en link gedeelte
[code]<?php if(!empty($action_button_text)){ ?>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12 xs-padding-right-15"> <a href=" <?php echo $action_link; ?>" class="default-btn pull-right action_button<?php echo (isset($action_class) && !empty($action_class) ? " " . $action_class : ""); ?>" target="_blank"><?php echo ($action_button_text); ?></a> </div>
<?php } ?>
</div>
[size=xsmall][i]Toevoeging op 13/06/2015 14:38:52:[/i][/size]
Knop en link gedeelte
<?php if(!empty($action_button_text)){ ?>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12 xs-padding-right-15"> <a href=" <?php echo $action_link; ?>" class="default-btn pull-right action_button<?php echo (isset($action_class) && !empty($action_class) ? " " . $action_class : ""); ?>" target="_blank"><?php echo ($action_button_text); ?></a> </div>
<?php } ?>
</div>
[size=xsmall][i]Toevoeging op 13/06/2015 14:47:32:[/i][/size]
Dit is on overzichtelijk hoe kan ik nou per text code het erin plaatsen
}
}
}
[size=xsmall][i]Toevoeging op 13/06/2015 14:34:26:[/i][/size]
Knop en link gedeelte
[code]<?php if(!empty($action_button_text)){ ?>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12 xs-padding-right-15"> <a href=" <?php echo $action_link; ?>" class="default-btn pull-right action_button<?php echo (isset($action_class) && !empty($action_class) ? " " . $action_class : ""); ?>" target="_blank"><?php echo ($action_button_text); ?></a> </div>
<?php } ?>
</div>
[size=xsmall][i]Toevoeging op 13/06/2015 14:38:52:[/i][/size]
Knop en link gedeelte
<?php if(!empty($action_button_text)){ ?>
<div class="col-lg-3 col-md-4 col-sm-12 col-xs-12 xs-padding-right-15"> <a href=" <?php echo $action_link; ?>" class="default-btn pull-right action_button<?php echo (isset($action_class) && !empty($action_class) ? " " . $action_class : ""); ?>" target="_blank"><?php echo ($action_button_text); ?></a> </div>
<?php } ?>
</div>
[size=xsmall][i]Toevoeging op 13/06/2015 14:47:32:[/i][/size]
Dit is on overzichtelijk hoe kan ik nou per text code het erin plaatsen