Title: Fix for pagemash with HTTPS
Last modified: August 22, 2016

---

# Fix for pagemash with HTTPS

 *  [Priscilla Chapman](https://wordpress.org/support/users/priscillamc/)
 * (@priscillamc)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/fix-for-pagemash-with-https/)
 * For anyone using pagemash on a site that delivers HTTPS admin pages and HTTP 
   site pages, the plugin admin pages won’t work properly. The items on the page
   will appear without any formatting because the CSS and JavaScript files are being
   blocked by browsers (blocked active mixed content). This seems to be caused by
   using get_option(‘siteurl’) for the WP_CONTENT_URL.
 * A quick solution is to edit line 60 of pagemash.php:
 * `$pageMash_url = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__));`
 * Bypassing WP_CONTENT_URL and using plugins_url() instead makes sure that the 
   files are included using the correct scheme:
 * `$pageMash_url = plugins_url('', __FILE__ );`
 * [https://wordpress.org/plugins/pagemash/](https://wordpress.org/plugins/pagemash/)

The topic ‘Fix for pagemash with HTTPS’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/pagemash.svg)
 * [pageMash > Page Management](https://wordpress.org/plugins/pagemash/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/pagemash/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/pagemash/)
 * [Active Topics](https://wordpress.org/support/plugin/pagemash/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/pagemash/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/pagemash/reviews/)

## Tags

 * [HTTPS](https://wordpress.org/support/topic-tag/https/)
 * [SSL](https://wordpress.org/support/topic-tag/ssl/)

 * 0 replies
 * 1 participant
 * Last reply from: [Priscilla Chapman](https://wordpress.org/support/users/priscillamc/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/fix-for-pagemash-with-https/)
 * Status: not resolved