Add A Pop Up In A Flipbox Or Within A Text Code - Question | JoomShaper

Add A Pop Up In A Flipbox Or Within A Text Code

DB

Diego Patricio Fernandez Bautista

General 2 years ago

Dear please with your support I need to add a pop up in a flipbox or within a text code, that is to say to have the pop up event where I can incorporate a video.

Be careful not to use the Modal Pop up option

0
2 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 2 years ago #18973

Hello Diego Patricio Fernandez Bautista

Sorry, we do not provide customization support. You have to do it on your own. You can also search on Joomla Extension Directory for any third-party solution.

Best regards

0
Pavel
Pavel
Accepted Answer
2 years ago #18984

Hi. Here is the code for popup.

<div id="your_unique_id" class="white-popup-block mfp-hide">
    <div class="modal-inner-block">
    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Id quasi nam minus voluptatibus totam culpa! Consequatur atque ipsum suscipit doloremque?</p>
    </div>
</div>
<a href="#your_unique_id" class="sppb-magnific-popup sppb-modal-selector" data-popup_type="inline" data-mainclass="mfp-no-margins mfp-with-zoom">
    Open popup
</a>

Replace your_unique_id on your own selector.


As well, you need to read the Magnific Popup documentation to change the content type that you need at the data-popup_type="__" attribute .

0