Unanswered Questions
8
votes
1answer
136 views
How to control accept encoding on HTTP API requests?
Related to this ticket about issues with inflating data.
So far it had been suggested by API's support to request gzip instead of deflate.
However I cannot find a way to override WP settings that ...
6
votes
1answer
84 views
Plugin API for easy admin list table generation, handling & exporting of MySQL tables?
I'm aware of the WP_List_Table class (which has helped tremendously as it stands).
However, I'm hunting for something even more capable - some form of API whereby you could simply 'register' a MySQL ...
4
votes
2answers
308 views
Allowing specific users to only add posts using certain custom taxomy terms
I was searching through the forums, but I can only find slightly related issues.
This is my problem:
I'd like to assign some editors the capability to only add posts in a predefined term of a custom ...
4
votes
1answer
757 views
How to edit posts with the new wp_editor api?
I am using bbPress 2x and modified the plugin to use the new wp_editor in place of the textarea for adding new topics and replies. This part works beautifully.
Where I am stuck is when a person ...
4
votes
0answers
218 views
Integrating Buddypress, Wootumblog and WPMU Sitewide tags
Judging by the lack of information when I perform a search, I may be one of the few people that has tried to get these plugins playing nicely together. When all is sorted and the site is live, I’ll ...
3
votes
2answers
115 views
File included into functions.php via require_once() won't echo?
I'm trying to load a file via require_once() to handle some enhanced functionality in my theme. I could place all the code directly inside functions.php, but I'm trying to isolate this code into its ...
3
votes
4answers
143 views
WordPress eCommerce plugin for books
I am looking for a WordPress plugin or helping resource which I can use to build up a eCommerce website for books which has "View Inside" feature, payments to be handled with paypal.
Heard of ...
3
votes
2answers
147 views
Special characters in WordPress UTF-8
I have a problem regarding special characters that are appearing messed up on the front-end .
mainly the get converted to question marks, or something like �?)
Example - Frédèric becomes Fr�d�ric.
...
3
votes
2answers
19 views
How can I get $id variable in widget's form function?
How can I get $id variable in widget's form function?
According to widget's structure I see that widget function have $args as a parameter, which will be extracted in function's body. In my case i ...
3
votes
2answers
660 views
wp_get_attachment_image_src problem
I'm have a problem with the wp_get_attachment_image_src function returning the incorrect url for an image.
My code looks like this:
$image_main_ar = wp_get_attachment_image_src( $image_ID, ...
3
votes
1answer
1k views
Infinite scroll / lazy loading with NextGen Gallery
I'm working on a project for a friend that involves a massive page with 3,000+ photos. See: http://www.thepurplepixie.com/projects/purple-pixies-people-project/
Currently, I have pagination set to 50 ...
3
votes
0answers
254 views
custom post type and custom taxonomy permalink
I have 2 pages.
/client-a/
/client-b/
I have a custom post type, called "case":
$case_type = array(
'labels' => $case_labels,
'public' => true,
'publicly_queryable' => true,
...
3
votes
3answers
130 views
Default archive URL wordpress
In wordpress you have a few 'default' archive URL's. Like for example: http://www.mydomain.com/2011/ generates an overview of the posts of (only) that year.
If you have an category blogs the url ...
3
votes
1answer
222 views
Video Embed in Sidebar Widget with Links to Others in Category
I am trying to re-create the sidebar widget found here: http://www.clinicalforensicpsychology.org/
The links below the shown video are linked to the post category "videos". I have tried most every ...
3
votes
2answers
233 views
How can I get my Custom Post Types to appear in nav-menus.php 'Menu'?
I am having a bit of a problem with my custom post types. I can create them fine in my theme, but I cannot get them to show up in the 'Menu' screen ... at least not by default.
I have tried adding ...