-
AuthorPosts
-
April 1, 2020 at 10:24 pm #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
April 2, 2020 at 2:26 am #1199931Hey 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 ShannonApril 4, 2020 at 7:50 pm #1200839Hallo,
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.
April 5, 2020 at 5:10 am #1200913Hi,
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,
MikeApril 6, 2020 at 2:46 pm #1201237Hallo 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
April 7, 2020 at 12:41 pm #1201571Hi,
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,
MikeApril 7, 2020 at 5:19 pm #1201655Hi 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, 7 months ago by frosch178.
April 8, 2020 at 12:53 pm #1201896Hi,
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.phpfunction 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>
Best regards,
MikeApril 27, 2020 at 6:25 pm #1207560Super, vielen Dank, hat funktioniert ;-)
April 27, 2020 at 6:37 pm #1207573Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon -
AuthorPosts
- The topic ‘pop up fenster’ is closed to new replies.