Problem solved:
Note: It could well be, that none of the below was necessary to fix the problem for others. The reason might just have been that I had connected to the facebook page source in Facebook Feed Plugin Settings, when our site was still http. And then we moved to https. But either way, the below worked for us.
What I did was edit wp-config.php:
1) Regenerated new salts/keys for the auth section.
2) Added:
define( 'WP_DEBUG', false );
define( 'WP_SITEURL', 'https://YOUR_DOMAIN/' );
define( 'WP_HOME', 'https://YOUR_DOMAIN/' );
define( 'WP_CONTENT_URL', 'https://YOUR_DOMAIN/wp-content');
define(' WP_CONTENT_DIR', '/bitnami/wordpress/wp-content');
define( 'WP_PLUGIN_DIR', '/bitnami/wordpress/wp-content/plugins' );
define( 'PLUGINDIR', 'bitnami/wordpress/wp-content/plugins' );
define( 'WP_PLUGIN_URL', 'https://YOUR_DOMAIN/wp-content/plugins' );
Replace YOUR_DOMAIN with your actual domain.
In other words, explicitly defined the correct urls and directories as there were issues reported of plugins not correctly resolving relative urls in wp-content and sub-directories. Specifically, /opt/bitnami/wordpress/wp-content is sym-linked to /bitnami/wordpress/wp-content, and some plugins experience issues with this.
Note, these definitions of …DIR, are JUST for bitnami and might not hold for future releases of their software even. Check docs and understand your wordpress folder structure. It may not be appropriate in other’s cases.
After the above was done, the Facebook Feed Plugin disconnected from the facebook page source and I just reconnected again in Settings. After the reconnect it worked fine and the mixed content warning/error disappeared.
This might help someone. Thank you.
-
This reply was modified 2 years, 4 months ago by ernst1234.
-
This reply was modified 2 years, 4 months ago by ernst1234.