PATH:
home
/
lab2454c
/
equitablegold.com
/
wp-content
/
plugins
/
master-addons
/
inc
/
classes
<?php namespace MasterAddons\Inc\Classes; use MasterAddons\Inc\Helper\Master_Addons_Helper; /** * Author Name: Liton Arefin * Author URL: https://jeweltheme.com * Date: 8/6/20 */ class Jltma_Reset_Themes_Conflicts { private static $instance = null; public function __construct() { add_action('wp_enqueue_scripts', [$this, 'jltma_reset_theme_conflicts']); // add_action('wp_enqueue_scripts', [$this, 'jltma_reset_theme_dequeue_script'], 100); // add_action('wp_print_scripts', [$this, 'jltma_reset_theme_dequeue_script'], 100); } function jltma_reset_theme_dequeue_script() { $theme = wp_get_theme(); // wp_dequeue_script( 'scriptname' ); //Stratus if ('Stratus' == $theme->name || 'Stratus' == $theme->parent_theme) { wp_dequeue_style('jltma-bootstrap'); } //OceanWP if ('OceanWP' == $theme->name || 'OceanWP' == $theme->parent_theme) { wp_dequeue_style('jltma-bootstrap'); } } public function jltma_reset_theme_conflicts() { $jltma_custom_css = ""; // gets the current theme $theme = wp_get_theme(); //Twenty Twelve if ('Twenty Twelve' == $theme->name || 'Twenty Twelve' == $theme->parent_theme) { // Twenty Twelve is the current active theme or parent theme } //Airi Theme Reset Styles if ('Airi' == $theme->name || 'Airi' == $theme->parent_theme) { $jltma_custom_css .= " @media (max-width: 1199px){ .header-mobile-menu .mobile-menu-toggle{ outline: none; } .main-navigation { position: fixed !important; max-width: 100% !important; } }"; wp_add_inline_style('airi-bootstrap', $jltma_custom_css); } } public static function get_instance() { if (!self::$instance) { self::$instance = new self; } return self::$instance; } } Jltma_Reset_Themes_Conflicts::get_instance();
[-] class-reset-themes.php
[edit]
[-] assets-manager.php
[edit]
[+]
..
[-] utils.php
[edit]
[-] JLTMA_Extension_Prototype.php
[edit]
[-] rollback.php
[edit]
[-] Pro_Upgrade.php
[edit]
[-] class-jltma-domain-checker.php
[edit]
[-] Animation.php
[edit]
[-] Feedback.php
[edit]
[-] white-label.php
[edit]
[-] Recommended_Plugins.php
[edit]
[+]
twitteroauth
[-] helper-class.php
[edit]
[-] JLTMA_Ajax_Queries.php
[edit]
[-] template-controls.php
[edit]
[+]
Notifications