Override style/templates
The Questalk pro is compatible with any WordPress site. However, for seamless integration with your site's style, a few adjustments may be necessary.
Here's how to customize the plugin:
Create a new folder named 'emqa-templates' in your theme directory.
Navigate to wp-content/themes/your-theme via FTP/Cpanel/localhost.
Create the 'emqa-templates' folder.
Copy and paste the desired files into the 'emqa-templates' folder.
Visit wp-content/plugins/emo-questalk-pro/templates.
Select the file you wish to customize.
Copy the selected file into wp-content/themes/your-theme/emqa-templates."
This version streamlines the instructions and clarifies the steps for customization.
Add the following code to the functions.php file To customize the style, follow these steps:
/* load style for EMO Questalk Pro plugin */
if( !function_exists('emqa_dom_amor_scripts') ){
function emqa_dom_amor_scripts(){
wp_enqueue_style( 'em-dom-amor-qa', get_stylesheet_directory_uri() . '/emqa-templates/style.css' );
}
add_action( 'wp_enqueue_scripts', 'emqa_dom_amor_scripts' );
}Last updated