Jermon
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Custom Profile Menu] Plugin Not Working With BP 1.9GReetings…I have purchased the pro version of your plugin. Odd I couldn’t find support or contact information your page. So I’m here I’d like to add after activating the plugin the Setting Page is black BP v1.9.1
any help?
Also I noticed the aviary version included in this plugin did not include all the tools currently available on the aviary website…so I added them…
If you are curious how to do this…
get the latest aviary tool set from this link:
https://feather.aviary.com/js/feather.jsfind this file:
aviary-image-editor-add-on-for-gravity-forms/includes/js/feather.jscopy everything from https://feather.aviary.com/js/feather.js into
aviary-image-editor-add-on-for-gravity-forms/includes/js/feather.jsyou will see a domain issue when trying to edit from instagram or facebook so
go here in your plugin editor, to this file:
aviary-image-editor-add-on-for-gravity-forms/includes/js/gform-aviary.jslocate:
function launchEditor()change to:
function launchEditor(src)locate:
var src = jQuery(‘#input_’+gf_aa_settings[‘id’]).val()change to:
if(!src){var src = jQuery(‘#input_’+gf_aa_settings[‘id’]).val();}locate:
#input_’+gf_aa_settings[‘id’]).val(image);
jQuery(‘li#field_’+gf_aa_settings[‘id’]+’ #btn_gf_aa_edit’).show();
jQuery.fancybox.close();
}change to:
#input_’+gf_aa_settings[‘id’]).val(image);
jQuery(‘li#field_’+gf_aa_settings[‘id’]+’ #btn_gf_aa_edit’).show();
jQuery.fancybox.close();
launchEditor(image);
}Update File
I fixed it I added this
var preview_height = gf_aa_settings[‘preview_height’];
below line 215
of
aviary-image-editor-add-on-for-gravity-forms/includes/js/gform-aviary.js