Last active
June 23, 2021 14:20
-
-
Save thebigtine/c82c0cc34eb4f1cc2a5de2ea483e5cd8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function after_accordion( $manufacturer, $model, $year_built, $price ) { | |
echo '<h2 id="yacht_finanz_calc" class="listing-heading">Finanzierung<i class="fa fa-sort-down"></i></h2>'; | |
echo '<div class="items grid grid-xl-3-items grid-lg-3-items grid-md-3-items listing-details-grid" style="display: none;">'; | |
echo '<script type="text/javascript"><!-- | |
modul_user = "Ribcenter"; | |
detail_hersteller = "' . $manufacturer . '"; | |
detail_modell = "' . $model . '"; | |
detail_baujahr = "' . $year_built . '"; | |
detail_kaufpreis = "' . trim( str_replace( ".", '', $price ) ) . '"; | |
modul_sprache = "de"; | |
modul_width = 1080 | |
modul_height = 480 | |
//--></script> | |
<link rel="stylesheet" href="https://www.yacht-finanz.de/sonstiges/warning.css" /> | |
<noscript> | |
<div class="warning"> | |
<span>Ihr JavaScript ist deaktiviert! Bitte aktivieren Sie JavaScript in Ihren Browser Einstellungen, damit Sie die Webseite voll nutzen können.</span> | |
</div> | |
<br /><br /> | |
Bei aktiviertem JavaScript wird hier der Finanzierungsrechner von <a href="https://www.yacht-finanz.de" target="_blank">Yacht-Finanz</a> angezeigt. | |
</noscript> | |
<script src="https://www.yacht-finanz.de/sonstiges/calc_modul_value.js"></script>'; | |
echo '</div>'; | |
} | |
add_action( 'after_accordion', 'after_accordion', 10, 4 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment