Unanswered Questions
11
votes
0answers
447 views
Physical organization of wordpress media library (Real Media Library plugin)
Introduction.
In the above screenshot you can see a folder structure built with premium plugin Real Media Library. Now I want to create an extension plugin which can organize the folder structure ...
11
votes
1answer
1k views
WordPress MultiSite Active Directory integration and site privacy
Here's the overview of the setup:
I have a multisite installation of WordPress 3.4.2.
I've installed the Active Directory Authentication Integration plugin to allow users to use their AD ...
10
votes
2answers
699 views
Get upload URL by blog ID in multisite
The essence of the question is, I'm looking for a solution like this:
$blog_upload_dir_info = wp_upload_dir( $date, $blog_ID );
$blog_upload_url = $blog_upload_dir_info[ 'baseurl' ];
Where $...
9
votes
0answers
208 views
Uploaded images don't show in Media Library if there are special characters in IPTC Keywords
Some images that are uploaded to WordPress don't show up in the Media Library. The images get uploaded and even cropped to the defined sizes, there is an entry in the Media Library, but the preview ...
8
votes
1answer
159 views
Enable update notification, disable updates
There are a lot of question on how to disable updates and/or removing update notifications. But all solutions that disable the update also disable the update notifications.
But I want to disable the ...
7
votes
3answers
54 views
What do I need to do to convert my MultiSite from HTTP to HTTPS?
I've been tasked with converting about 100 sites in my multisite instance to HTTPS.
I can easily write a script to hit the DB and change the siteurl and home values to HTTPS, which inturn should ...
6
votes
0answers
99 views
Post injection - how to exclude the original post
This question refers to @Pieter Goosen´s extensive work about how to alter the main query using the pre_get_posts hook on true pages. It is also referenced in the codex.
With his method you are able ...
6
votes
0answers
135 views
Why did multiple line breaks stop working in text editor?
# Adds ability to add break tags on posts
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );
add_filter( 'the_content', 'nl2br' );
add_filter( 'the_excerpt', 'nl2br'...
6
votes
1answer
63 views
Multisite posts in categories on network
I'm running a multisite with a main site and 3 subsites (the number of subsites will be over 200 at the end). Now on every site I have a category called A, Category called B, and Category called C. On ...
6
votes
1answer
122 views
Wordpress cron isn't scheduled on amazon web services
I'm trying to setup a cron to run every hour, it works fine on my local vagrant box, but it doesn't seem to schedule properly on aws(elastic beanstalk). Here's the code:
register_activation_hook(...
6
votes
0answers
239 views
How to set up fail2ban with WordFence?
I found a blog post that talks about setting up Wordfence and fail2ban but it's quite useless as there is no mention of any technical activity. Only that it took the author a total of 5 hours.
I ...
6
votes
2answers
143 views
SSL breaks customizer: page isn't returned from ajax
I have a WordPress install using a Comodo SSL certificate. I have the WordPress HTTPS plugin installed and I'm using the AZ theme, and the admin is set to load over HTTPS. So far so good.
On the ...
6
votes
3answers
3k views
Uncaught ReferenceError:switchEditors is not defined
Is anyone familiar with this error? It is causing TinyMCE to break in my Wordpress theme.
In console it gives me these two errors both seem to originate from wp-admin/post-new.php
Uncaught ...
5
votes
0answers
32 views
How to upload multiple images with WP_Customize_Media_Control
This question is specifically related to the WordPress Customizer. I am looking for a way to upload multiple images with the WP_Customize_Media_Control. It is easy to do this for metaboxes, but I do ...
5
votes
1answer
54 views
Restrict one post per author
I'm trying to create an events plugin and so far, I'm through with the following:
A short-code that displays a form on the front-end to the user.
The event display page that renders the output.
'...