Hey @bling007,
In version 1.0.89 we added more features to the affiliate account and also refactored some parts of it. Even so, the way we load the stylesheet of the plugin remained the same, so the styling should apply.
I do have a couple solutions in mind. However, I cannot guarantee they will work.
1. The first one is via the following code snippet:
function slicewp_custom_enqueue_front_end_styles() {
if ( defined( 'SLICEWP_PLUGIN_DIR_URL' ) ) {
wp_register_style( 'slicewp-style', SLICEWP_PLUGIN_DIR_URL . 'assets/css/style-front-end.css', array(), SLICEWP_VERSION );
wp_enqueue_style( 'slicewp-style' );
}
}
add_action( 'wp_enqueue_scripts', 'slicewp_custom_enqueue_front_end_styles', 9999999 );
Please copy the above code and add it to your website. If you’re not sure how to add code snippets to your site, you can use the Code Snippets plugin (https://www.ads-software.com/plugins/code-snippets/).
Please try it out. If this does not work, please try solution 2.
2. Please download and install the SliceWP version from this following link: https://slicewp.com/wp-content/uploads/2023/07/slicewp-v.1.0.96-test.zip
Once you download the .zip file, please install it from Plugins > Add New > Upload Plugin. No need to uninstall the version that you currently have, just replace it with the one from the .zip file.
I have made a small tweak, but considering that I cannot replicate the issue on my end, I cannot confirm if this tweak will help or not. Please give it a try and let me know how it goes. If all goes well, I believe that we can release this publicly.
Also, did you try the solution from my previous reply? I’m curios to know if you’ve found any compatibility issues.
Thank you and best wishes,
Mihai