Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1199900

    Hi,

    kann man mit euerem Theme auch in Pop up fenster integrieren, was beim Start der website darüber legt z.b. für aktionen?

    …oder geht das nur mit einem Plugin, wenn ja welches kompartibel?

    Beispiel seite anbei…

    Danke für euer Feedback

    #1199931

    Hey frosch178,

    Can you add more context to the question? I see the pop-up, but are you needing it to be styled?

    Best regards,
    Jordan Shannon

    #1200839

    Hallo,

    meine Frage ist kann ich so ein Pop up Fenster, welches nach ein paar sekunden über der Website (siehe Beispielwebsite in der letzten mail) erscheint auch mit euerem Theme erstellen, wenn ja wie??? Oder muss ich mir ein Plugin dafür runterladen?

    Ich möchte ein Pop up fenster auf meine seite integireren, habe ein beispiel einer anderen seite die ich im netz gesehen habe mitgeschickt…

    Danke für die schnelle Rückmeldung.

    #1200913

    Hi,
    Leider verfügt unser Popup nicht über die Option für verzögertes Popup. Dazu müssen Sie ein Plugin verwenden. Eines, das anscheinend gut funktioniert, ist WP Popups , aber es gibt viele zur Auswahl.

    — Translated with Google —

    Unfortunately, our popup doesn’t have the delayed popup option, for this you will need to use a plugin, one that seems to work well is WP Popups, but there are many to choose from.

    Best regards,
    Mike

    #1201237

    Hallo Mike,

    danke für die Antwort,

    jetzt meine Frage, da Sie geschrieben habe, dass es kein verzögertes Popup gibt, ist ein anders Popup, was gleich erscheint im Theme integriert, oder brauche ich in jeden Fall ein Plugin??

    Besten Dank

    #1201571

    Hi,
    Ich bin mir nicht sicher, ob ich Ihre Frage verstehe, daher haben wir kein “verzögertes” Popup. Wenn Sie dies benötigen, müssen Sie ein Plugin verwenden. Andernfalls funktioniert unser einfaches Popup, das beim Klicken geöffnet wird, wahrscheinlich für Sie.

    — Translated with Google —

    I’m not sure that I understand your question, so we don’t have a “delayed” popup, if you need this you will need to use a plugin, otherwise, our basic popup that opens on click will probably work for you.

    Best regards,
    Mike

    #1201655

    Hi Mike,

    my question was, you are talking from a basic popup, how can I put it on my website?
    Where do I find it?
    Do I find it “MyEnfold Child Theme Optionen” or by the Layout Bilder?? or somewhere???

    Is it a pop up like the cookie popup? Its a overlayer on my website, when somebody opens my website?And the user must close it? Is it correct?

    Thanks for helping, sorry I don´t find it ;-(

    The example picture is in the private content…

    • This reply was modified 4 years, 3 months ago by frosch178.
    #1201896

    Hi,
    Thank you for the feedback, to use the basic popup there is no setting, it is added with some code snippets and then your own HTML & css to style.
    To create a popup please follow these steps.
    So yes, it is like the cookie popup, when someone clicks the link the popup will show, if you want it to open automatically on the page load on a certain page we can help with more code like this added to your functions.php

    function custom_script(){
      ?>
      <script>
      (function($){
      	$(document).ready(function () {
      		 setTimeout(function() {
      $('a.open-popup-link').trigger('click');  
      		 },500);
      }); 
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    This code will open the link everywhere on your site, if you want it to only work on one page please let us know so we can adjust.
    One way to test this is to add this code to a code block element:

    <script type="text/javascript">
    jQuery(window).load(function(){
      jQuery('.open-popup-link').magnificPopup({
        type:'inline',
        midClick: true
      });
    });
    (function($){
      	$(document).ready(function () {
      		 setTimeout(function() {
      $('a.open-popup-link').trigger('click');  
      		 },500);
      }); 
      })(jQuery);
    </script>
    <!--/*triger*/-->
    <a href="#test-popup" class="open-popup-link">Click this button to open a lightbox</a>
    <!--/*popup box*/-->
    <div id="test-popup" class="white-popup mfp-hide">
    YOUR CODE GOES HERE
    </div>
    <style>
    /*css*/
    .white-popup {
      position: relative;
      background: #FFF;
      padding: 20px;
      width: auto;
      max-width: 500px;
      margin: 20px auto;
    }
    </style>

    2020-04-08_065030.png
    and then reload your page:
    2020-04-08_065201.png

    Best regards,
    Mike

    #1207560

    Super, vielen Dank, hat funktioniert ;-)

    #1207573

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘pop up fenster’ is closed to new replies.