Forum Replies Created

Viewing 30 posts - 1 through 30 (of 63 total)
  • Author
    Posts
  • in reply to: Breadcrumb position #1287388

    I add the shortcode and it works.
    But as i said it before: Even though we use a child theme, I had to add the code in the functions of the original theme.

    After the last update, i had to add the code to the functions of the original theme again.

    How i set up the child theme:
    1. I have installed the enfold and the child theme.
    2. I have activated the child-theme
    3. I have uploaded the settings i set before in the enfold-theme

    Do i have made a mistake?

    • This reply was modified 3 years, 8 months ago by Almo.
    in reply to: Breadcrumb position #1279524

    Thanks for the link.
    I have put it in functions from our child theme, nothing happens.
    If i put it in the enfold functions it works.

    How can i set it center or right? Now it is left….

    in reply to: Privacy and Cookie #1247824

    Thx. Works!

    in reply to: Privacy and Cookie #1247582

    prosafe-ms.com

    in reply to: Privacy and Cookie #1247388

    https://prnt.sc/ul5e7w

    I want to change the colour.

    in reply to: Privacy and Cookie #1247297

    Thx for your reply. Works.

    Last question: How can i change the colour of the toggles in the modal menu?

    in reply to: Links Socket/Footer Menu #1233486

    Thx. Works! Perfect.

    in reply to: Links Socket/Footer Menu #1232898

    Oh Sorry.

    prosafe-ms.com

    in reply to: Structured Data – FAQ in google results #1224547

    I tried it already.

    The main problem is: “The structured Data option” only appears if i activate the Block-Editor!

    If i install another plugin “The structured Data option” appears from the plugin and not from Yaost SEO.
    We want to use the option from Yoast.

    in reply to: Text Size – Contact Form Response #1179978

    thx for that. works fine.

    in reply to: Text Size – Contact Form Response #1179939
    This reply has been marked as private.
    in reply to: Problem mit Captcha Feld Kontaktformular #1106643

    thx for your reply. for now its ok. the number is now shown with a distance to the “?”.

    It would be better if you can solve the problem in a different way.
    For example: if you fill in, the “?” disappears.

    best regards.

    in reply to: Problem mit Captcha Feld Kontaktformular #1104765

    ok

    • This reply was modified 5 years, 5 months ago by Almo.
    in reply to: Problem mit Captcha Feld Kontaktformular #1103875

    Yes i use the latest version: 4.5.7

    in reply to: Email Betreff #1085361

    Super, hat geklappt. Danke.

    in reply to: Breadcrumb is not showing #983175

    Awesome. thanks for the fast service.

    in reply to: Breadcrumb is not showing #983162
    This reply has been marked as private.
    in reply to: Font-Size Contact Form #975223

    Thanks. Works fine.

    in reply to: Font-Size Contact Form #974649

    Not the head lines above the forms. I mean the text inside the forms.

    in reply to: Font-Size Contact Form #974192

    http://www.prosafe-ms.com/kontakt

    • This reply was modified 6 years, 5 months ago by Almo.
    in reply to: Email Betreff #963516

    Da haben wir schon etwas eingetragen und wird auch angezeigt.

    Es geht um den Betreff der Email, die derjenige automatisch erhält und nicht um die Email die wir erhalten!!!

    in reply to: Email Betreff #962990

    Thanks, but it’s not about the autoresponder Text. It’s about the “subject Line” of that Autoresponder E-Mail you get.

    -> If someone fill in the details and send us a mail with the contact form, he gets the Email with the text exactly from the autoresponder field. But in the subject line is still “……DEINE NACHRICHT”.

    in reply to: Email Betreff #961653

    How can we change the subject line from the Autoresponder Mail from “Vielen Dank für deine Nachricht” to “Vielen Dank für Ihre Nachricht?

    in reply to: Footer – padding/margin #931108

    Works. Thanks.

    Thx for your reply. The Buttons doesn’t get smaller. They stay still big and do not resize. The only Thing that Change, is the fontsize.
    It would be great,if we can resolve it.

    Best regards.

    Dear Ismael,

    thanks for your reply. It isn’t Online yet. First I would like to make it offline. If it is ready, we will immediately Change it with our current Version.

    When i open the construction demo on an iphone 5 or at mobiletest.me, the text gets responsive and resize. But the Buttons stay to big, so that you cannot see the Buttons. How can i solve it?

    Go to mobiletest.me and choose Iphone 5 and test the construction demo: http://kriesi.at/themes/enfold-construction/
    There you will see and understand what i mean.

    Best regards

    in reply to: PHP 7 + Opcache (1und1 Webhosting) #584142

    das werde ich mal testen. aber erst gegen Abend. Während der Betriebszeit geht’s leider nicht. Grüße

    in reply to: Mobile Menu Missing #584136

    It runs now. i have cleared the Cache and test it again. Everything is fine now. thx

    in reply to: Mobile Menu Missing #584129

    Hi Yigit.

    I have manually updated the theme. Nothing changed.
    I have deactivate the plugins und activate them. Nothing changed.

    I really dont know how do solve the Problem. This Problem was not there.

    Our Provider is: 1und1
    PHP: 7.0
    gzip is activated through a php.ini.

    code gzip.php:
    <?php
    //check that zlib compression is enabled
    if(!ini_get(‘zlib.output_compression’)){ die(); }

    $allowed = array(‘css’,’js’); //set array of allowed file types to prevent abuse

    //check for request variable existence and that file type is allowed
    if(isset($_GET[‘file’]) && isset($_GET[‘type’]) && in_array(substr($_GET[‘file’],strrpos($_GET[‘file’],’.’)+1), $allowed)){
    $data = file_get_contents(dirname(__FILE__).’/’.$_GET[‘file’]); // grab the file contents

    $etag = ‘”‘.md5($data).'”‘; // generate a file Etag
    header(‘Etag: ‘.$etag); // output the Etag in the header

    // output the content-type header for each file type
    switch ($_GET[‘type’]) {
    case ‘css’:
    header (“Content-Type: text/css; charset: UTF-8”);
    break;

    case ‘js’:
    header (“Content-Type: text/javascript; charset: UTF-8”);
    break;
    }

    header(‘Cache-Control: max-age=2592000, must-revalidate’); //output the cache-control header
    $offset = 60 * 60;
    $expires = ‘Expires: ‘ . gmdate(‘D, d M Y H:i:s’,time() + $offset) . ‘ GMT’; // set the expires header to be 1 hour in the future
    header($expires); // output the expires header

    // check the Etag the browser already has for the file and only serve the file if it is different
    if ($etag == $_SERVER[‘HTTP_IF_NONE_MATCH’]) {
    header(‘HTTP/1.1 304 Not Modified’);
    header(‘Content-Length: 0’);
    } else {
    echo $data;
    }
    }
    ?>

    code php.ini:
    zlib.output_compression = On
    zlib.output_compression_level = 9

    i also tried to remove the gzip function, but then our theme breaks.

    i hope to solve the Problem. If you Need an admin account, please tell me.

    in reply to: PHP 7 + Opcache (1und1 Webhosting) #577797

    Now in english:

    We have now (yesterday) updated to PHP 7.0 version. Our provider is 1und1. The activation was easy and it runs good.
    In addition, we want to use the function “opcache”.
    I have set it according to this howto: http://community.1und1.de/php-7/?pk_campaign=1and1cp_de&pk_kwd=php-7-read-more

    After i update our php.ini with the code, our site is broken.
    Can someone help us?

    Greetings

Viewing 30 posts - 1 through 30 (of 63 total)