cirpo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tag rest api@timothy thanks a lot for your reply!
Is there any way I can help with the API documentation, to avoid other ppl having the same issues?
Also, do you know what’s the best place to discuss the API design (for example the “missing” GET API for tags given the tag name, or having pagination in the headers)?
I would like to help
thanks
Forum: Plugins
In reply to: [Plugin: BuddyPress Classifieds] Help!Did you install the plugin on a wordpress-mu installation?
it doesn’t work yet with wordpress.
cirpo
Forum: Plugins
In reply to: [Plugin: BuddyPress Classifieds] Upload Images broken?It’s a bug.
To fix it edit classifieds-pictures.js and substitute every ‘j’ with ‘jQuery’.line 94:
j.post( ajaxurl, {
change it to
jQuery.post( ajaxurl, {line 74:
link = j(this).find('.edit-classified-picture');
to
link = jQuery(this).find('.edit-classified-picture');line 78:
favorite_link.appendTo(j(this).find('dt:first'));
to
favorite_link.appendTo(jQuery(this).find('dt:first'));It should work now.
cirpo
Forum: Plugins
In reply to: [Plugin: BuddyPress Classifieds] Upload image doesn`t workIt’s a bug.
To fix it edit classifieds-pictures.js and substitute every ‘j’ with ‘jQuery’.For example at line 94:
j.post( ajaxurl, {chang it to
jQuery.post( ajaxurl, {It should work
cirpo