Skip to content

Instantly share code, notes, and snippets.

View mohsinrasool's full-sized avatar
💪

Mohsin Rasool mohsinrasool

💪
View GitHub Profile
@mohsinrasool
mohsinrasool / script.js
Last active October 25, 2021 21:21
Convert Divi Tabs to Dropdown for Mobile
/** Step 1: Add "mobile-tab-dropdown" to Tab module
* Step 2: Add following script in Divi > Theme Options > Integration > "Add code to <body> tag"
*/
jQuery(document).ready(function () {
if($('.mobile-tab-dropdown').length) {
var html = '<div id="tabs-mobile-dropdown" class="dropdown" style="position: relative;width: 100%;margin: 10px 0;">'
html += '<select class="select-style " style="background: white;width: 100%;">';
$('.et_pb_tabs .et_pb_tabs_controls li').each(function() {
@mohsinrasool
mohsinrasool / Disable-PHP-Warnings.php
Created January 2, 2023 18:55
This WordPress mu-plugin disables php deprecated messages and warnings,
<?php
/*
Plugin Name: Disable PHP warnings
Description: This plugin disables php deprecated messages and warnings,
Version: 0.1
Author: mohsinrasool
Author URI: https://mohsinrasool.pk
*/