Forum Replies Created
-
AuthorPosts
-
jdcpar5
MemberLooks like you could have this turned into a plugin for your Genesis / AgentPress site to access the PropertyBase info on your listings. You'd need a template or two to display those listings, but should be doable.
jdcpar5
MemberThanks for posting that! Unfortunately, that didn't work for me, so just as a workaround until they fix this, I changed the contents of update.php to this:
<code><?php
/**
* Handles Prose updates.
*
* @since 1.5.0
* @author StudioPress
* @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)
* @link http://www.studiopress.com/themes/prose
*//**
* Pings http://api.genesistheme.com/update-themes/prose/ asking if
* a new version of this theme is available.
*
* If not, it returns false.
*
* If so, the external server passes serialized data back to this function,
* which gets unserialized and returned for use.
*
* @since 1.5.0
*
* @uses CHILD_THEME_VERSION Prose version string
*
* @global string $wp_version WordPress version string
* @return mixed Unserialized data, or false on failure
*/
function prose_update_check() {
global $wp_version;
return false;
}</code>Worked for me.
jdcpar5
MemberHas anyone heard anything back on this issue?
I tried to load and activate Prose on two of my sites, and I'm getting the same "You do not have sufficient permissions to access this page." error. Same error also shows up when using the Live Preview link on the Appearance > Themes panel. I submitted a ticket, just wondering if anyone found any workarounds? Thanks
-
AuthorPosts