Hi, I purchased the Soliloquy upgrade,and followed the directions on your help page to add code to functions.php to enable the validation option. I installed the X child theme as recommended, also tried removing the Soliloquy plugin and reinstalled it with the purchased version. But the settings/validation option still does not show up. Soliloquy support said I should contact you for assistance. Thanks
Hi @mdahmke,
Can you try installing the purchased version of the plugin without adding any code on the child theme first? Check the issue again after that. If the issue persists, we need you to share site URL and credentials inside a secure note so we can see your setup:

Hi @mdahmke,
Thank you for the credentials but the FTP seems to be not working, please remove the function you added on the child theme and replace it with this instead.
/*show soliloquy notice*/
add_action('after_setup_theme', 'x_show_soliloquy_license');
function x_show_soliloquy_license() {
remove_action( 'init', 'x_soliloquy_remove_license_notice', 9999 );
}
/*show soliloquy license box*/
function x_soliloquy_show_key_box() { ?>
<style>
#soliloquy-settings-key-box{
display: table-row;;
}
</style>
<?php
}
add_action( 'admin_head', 'x_soliloquy_show_key_box' );
Hope it helps,
Cheers!
Thank you, it is working now.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.