Your cart is currently empty!
Change Insecure Image Footer
—
by
Hello,
I want to change the image address URL of this image: https://www.itthinx.com/img/affiliates-enterprise/affiliates-enterprise.png
It is appear in the admin area of affiliates plugin. Which file I need to change?
Thanks a lot
Posted in Affiliates Enterprise
Comments
4 responses to “Change Insecure Image Footer”
Perfect!
Sorry i forgot to mention that this snippet should be ideally put in the functions.php of your child theme, so that you don’t miss it upon theme update.
Cheers
Hi Dwi,
You can use the filter affiliates_footer and modify the output
Powered by Affiliates Enterprise © Copyright 2017 itthinx Use of this plugin without a granted license constitutes an act of COPYRIGHT INFRINGEMENT and LICENSE VIOLATION. This plugin contains parts that are provided under the GPLv3 License and strictly independent proprietary parts to which the GPLv3 License does not apply. You MUST be granted a license by the copyright holder for those parts that are not provided under the GPLv3 license. If you have not obtained a license by the copyright holder, you should remove this plugin and use the fully GPLv3-licensed Affiliates plugin instead.
like this:
add_filter( 'affiliates_footer', 'example_affiliates_footer' );
function example_affiliates_footer( $footer ) {
$footer = 'Example';//modify the affiliates footer div
return $footer;
}
Actually I just want to change this image URL (http://www.itthinx.com/img/affiliates-enterprise/affiliates-enterprise.png) to HTTPS
So what I will do is upload that image to my media and renew the URL in the file
I can add the filter affiliates_footer in the functions.php or in which file?
Thanks
Ooh Perfect,
I just follow your steps.
Thank youuuuu very much