Enqueue JS in Child Theme
wp_enqueue_script( 'enym-custom-js', get_stylesheet_directory_uri() . '/js/enym-cystom.js', array('jquery'), null, true );
wp_enqueue_script( 'enym-custom-js', get_stylesheet_directory_uri() . '/js/enym-cystom.js', array('jquery'), null, true );
You need to have two images in WBPBakery and still want to align the content in one column with the main stage Not possible at the moment. But this little CSS hack helps. You just add the according class to…
I’ve got a megamenu on my site which has got three columns and is working fine. My client is asking if I can make another column underneath the three, which spans multiple columns as they want to put a large…
Better Version: The Vectors are implemented via CSS background code. You can easily change the icons with your own vector images if you transform the SVGs with this tool: https://www.svgbackgrounds.com/tools/svg-to-css/ Use This CSS-Code to place the quote-images properly. There are…
A simple PHP script that automatically downloads and unzips the latest version of WordPress in the current directory (./), so that I don't have to download it and upload it to my server through FTP manually. via <?php echo '<pre>';…
add_filter( 'forminator_pdf_basic_template_markup', function( $html, $pdf_settings, $form_id, $entry_id ){ if ( $form_id !=37063 ) { //Please change the form ID return $html; } $css = '<style type="text/css" title="text/css" media="screen"> .forminator-pdf-header.logo-container .pdf-logo { text-align:center !important; width: 100% !important; padding-left: 100px; } .forminator-pdf-header.logo-container…
// Download image link. add_action( 'wp_footer', function() { ?> <script> /* Insert download links to all image grid images */ document.querySelectorAll( '.vcex-image-grid-entry-link' ).forEach( ( link ) => { const downloadLink = document.createElement( 'a' ); downloadLink.className = 'frandeprado-image-download-link'; downloadLink.setAttribute( 'href', link.getAttribute(…
Sometimes you have it disabled in Exchange Admin, but still users are asked to activate it when they log in. it looks like this then: Go to Microsoft 365 Admin Click on settings. Click on Org Settings In Search type…
/* FORMINATOR TRACKING * https://gist.github.com/wpmudev-sls/5fc34beaee5a34947cda67ccc6a56bff * https://gist.github.com/patrickfreitasdev/46c9dbf946b3cc34a46ae3a24d58635b THIS ONE HERE GA ONLY */ add_action( 'wp_footer', function(){ /** * Tracking ID and property number * * The tracking ID is a string like UA-000000-2. * It must be included in your…
Hi, I’m not sure what you mean by ”search from that page only”. If you just want your search bar to search standard posts (so not pages, portfolio, staff…etc) you can simply edit the search bar to set it so it only searches for posts like this: https://a.cl.ly/kpue6BY1 But if…