Mobile Themes functions.php

Posted in: Newspaper
Post count: 361

Can you tell me where I can find the mobile themes functions.php file? So that I can add the following code:

// Remove Multi Purpose Style

add_action( ‘wp_enqueue_scripts’, ‘infophilic_remove_multi_purpose’, 20 );
function infophilic_remove_multi_purpose() {
wp_dequeue_style( ‘td-plugin-multi-purpose’ );
}

// Remove Newsletter Style

add_action( ‘wp_enqueue_scripts’, ‘infophilic_remove_newsletter’, 20 );
function infophilic_remove_newsletter() {
wp_dequeue_style( ‘td-plugin-newsletter’ );
}

Thank you very much!
Greetings Kathrin

Post count: 35449

Hi,

The path to the mobile theme functions is wp-content/plugins/td-composer/mobile/functions.php -> https://i.imgur.com/M6eKXCv.png

Hope this will help you!
Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.