Automatische Installation mit den Webhosting Panels wie Cloudpanel oder AA-Panel.
Copyright © [the-year] [site-link]. Hosted by <a target="_blank" href="https://wieser-hv.de">Wieser-HV.de</a>
https://wordpress.com/support/wordpress-editor/blocks/shortcode-block/#available-shortcodes
Verwende nun Ghost mit dem Solo Theme
<?php
add_filter( 'comment_form_default_fields', function ($fields) {
if ( isset( $fields['url'] ) ) {
unset( $fields['url'] );
}
return $fields;
}, 150 );
<?php
add_filter( 'login_head', function () {
// Update the line below with the URL to your own logo.
// Adjust the Width & Height accordingly.
$custom_logo = 'https:// <replace logo location here> ';
$logo_width = 84;
$logo_height = 84;
printf(
'<style>.login h1 a {background-image:url(%1$s) !important; margin:0 auto; width: %2$spx; height: %3$spx; background-size: 100%%;}</style>',
$custom_logo,
$logo_width,
$logo_height
);
}, 990 );
Nach einem Theme Upgrade neu einfügen im Theme Footer bevor </body>:
JQuery Script nicht vergessen und Größe auf 15 setzen!
Farben für Chatfenster:
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://support.wieser-hv.de/assets/chat/chat.min.js"></script>
<script> $(function()
{ new ZammadChat({
background: '#110f1d',
fontSize: '15px',
flat: true,
chatId: 2 }); });
</script>
Vor </body>
<button id="feedback-form">Kontakt</button>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script id="zammad_form_script" src="https://support.wieser-hv.de/assets/form/form.js"></script>
<script>
$(function() {
$('#feedback-form').ZammadForm({
messageTitle: 'Kontakt Formular',
messageSubmit: 'Übermitteln',
messageThankYou: 'Vielen Dank für Ihre Anfrage (#%s). Wir melden uns umgehend!',
modal: true
});
});
</script>