Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Forum: Fixing WordPress
    In reply to: Tag rest api
    Thread Starter cirpo

    (@cirpo)

    @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

    cirpo

    (@cirpo)

    Did you install the plugin on a wordpress-mu installation?

    it doesn’t work yet with wordpress.

    cirpo

    cirpo

    (@cirpo)

    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

    cirpo

    (@cirpo)

    It’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

Viewing 4 replies - 1 through 4 (of 4 total)