I have done this in the splash-page.php.
I added some php variables for my second button. The first button stayed the same (go to site URL) but it’s just a URL change for the button.
I added the following for my second button:
`<?php
$image_name = ‘http://mysite/wp-content/plugins/wp-splash-page/templates/mydefault/facebook.png’;
$image_url = ‘http://www.facebook.com/’;
?>`
Then I added the new button:
<!-- === Continue Button === -->
<div>
<div>
<a id="wpsp-continue" class="button" href="<?php echo esc_url( $this->current_url ); ?>" ><?php echo esc_html( $this->settings['continue_button_text'] ); ?></a>
</div>
<div>
<a id="button2" class="button2" href='<?php echo $image_url; ?>'><img src='<?php echo $image_name; ?>'></a>
</div>
</div>
Nemesisss, can you tell me where you added this code?
I know where the continue button code is, but I do not know where to add the:
<?php
$image_name = 'http://mysite/wp-content/plugins/wp-splash-page/templates/mydefault/facebook.png';
$image_url = 'http://www.facebook.com/';
?>
part.