lurla
Forum Replies Created
-
Forum: Plugins
In reply to: [JSON API] Get posts from two categoriesI did not find category__in to work. If I put in a list of values, only the first one was read, if I put in the query var twice: category__in=8&category__in=9 – only the second one was read, i assume overwriting the first.
But I was able to use a different query var on the get_posts call to make a multi-category query
https://domain.com/api/get_posts/?post_type=customtypename&cat=17,15I used the above to query a custom type – costumtypename
and use cat=12,13
where the values are the category IDs, separated by commasForum: Plugins
In reply to: [JSON API] How to get post by tag?I have had success with the get_tag_posts method:
https://yourdomain.com/api/get_tag_posts/?tag_slug=your_slug_valueForum: Plugins
In reply to: [JSON API] Attachments are missingI found that the order of steps you follow to create a post/page determines whether the images are in the attachments. If you upload the image as part of the post/page creation process, the images are in the attachments array. If you linked to an existing image in your media library (that was uploaded separately from the post creation) then the images will not be present.
Forum: Reviews
In reply to: [JSON API] how get all categoriesForum: Plugins
In reply to: [Modal Dialog] Configuration doesnt appear (cant work)have you looked at your page in a javascript debugger to see if jquery is the issue? I use Chrome, it has a built in developer toolbar. Firebug is a good add on for firefox.
Forum: Plugins
In reply to: Captcha (BWS Plugins) input field not in correct positionI am experiencing the same issue. What was your resolution?
It turns out the problem was root relative links for image source and links that needed to be file relative because the domain (a testing domain) has a subfolder in it.
Forum: Plugins
In reply to: several plugins causing menu items to open in new windowsBTW I’m running wp 3.0.1 and some, but not all, of the offending plugins have updates available. I’m setting up the new server to manage updating and getting various plugins to play well together without any downtime. Not sure if I should just start updating and hope it fixes the menu issue or try to get it working correctly before starting to update things.
Forum: Fixing WordPress
In reply to: Menu items opening in new tab or windowHow did you resolve this? I am having a similar problem, though not after an upgrade, but simply after moving the site to a new server to use as a development server. Now all links are opening in a new window.