skip to Main Content

Divi theme – How to create custom Divi module?

How can I add a custom module for Divi Wordpress theme? http://www.elegantthemes.com/gallery/divi/ Original modules are created in main-modules.php Example: class ET_Builder_Module_Gallery extends ET_Builder_Module { .... } But the ET_Builder_Module class is not accessible in my plugin, or in theme functions.php

VIEW QUESTION

Twitter bootstrap – Bootstrap & WordPress – Nothing happens

So I'm trying to use a Bootstrap Modal, and I want it to appear after a click (onclick method). Right now I have this $(document).ready(function(){ $("#cancelPObtn").on("click", function(){ $("#error-dialog").modal();}); }); <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> <link rel="stylesheet" type="text/css" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.0.4/css/bootstrap-combined.min.css"> <script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.0.4/js/bootstrap.min.js"></script> <!-- BELOW ON…

VIEW QUESTION
Back To Top
Search