Cerebral ideas
Forum Replies Created
-
Forum: Plugins
In reply to: Custom Post Type Search BarHmm, this is seeming to be more complicated than I originally thought. Though this discussion may help you along:
I don’t have too much free time to play with this, but if I do, I’ll keep in touch.
Forum: Plugins
In reply to: Custom Post Type Search BarYeah, looking back at the advice I gave you, it’s not right for a couple of reasons. Now that I am actually testing it, I can’t figure out how to do it either. I’ll report back if I figure it out.
Forum: Plugins
In reply to: Custom Post Type Search BarWould’t that be …
<input type="hidden" name="post_type_one" value="posttypeone" /> <input type="hidden" name="post_type_two" value="posttypetwo" />
From what I understand, there’s no need to stuff multiple values into one hidden input, just create multiple hidden inputs.
Forum: Plugins
In reply to: How do you Remove the Nav Drop DownsAnyone, bump bump?
Forum: Fixing WordPress
In reply to: Display list of users and descriptionsThat’s exactly what I wanted to try, but I didn’t want to spend hours chasing my tail if it didn’t work. Since you have corroborated that thought, I may try it if what I am trying right now does not. Thanks Esmi!
At the moment, if any is interested, I am using Justin Tadlock’s method seen here (it seems to work for my situation):
https://justintadlock.com/archives/2008/06/09/doing-more-with-gravatars-authors-template-page
Good luck Anela.
Forum: Fixing WordPress
In reply to: Display list of users and descriptionsYes, sorry. Two tables … I just copied and pasted what Anela said. Do you have any ideas on our issue though?
Forum: Fixing WordPress
In reply to: Display list of users and descriptionsI’ve been looking for a way to display a list of users as well. It would be nice to be able to query their avatar, display name and description, but like Anela said, “there are two databases … I’m lost.”
Thanks in advance to anyone that can help.
Justin
Forum: Networking WordPress
In reply to: Check if site is main site in network.Awesome, thanks David!
Forum: Fixing WordPress
In reply to: Post by Email vanished from SettingsNo problem. I wish they would have documented this better. It took me forever to figure out that it was default for it to be turned off for multisite.
Justin
Forum: Plugins
In reply to: [Plugin: Post Via Email] Custom Post TypeI was thinking this same thing.
Forum: Fixing WordPress
In reply to: Post by Email vanished from Settingsin an mu-plugin:
add_filter( 'enable_post_by_email_configuration', '__return_true', 100 );
That will enable it for you fine.
I don’t think you are offering up enough practical information for someone to act on to solve this problem.
If you are wanting someone to create their own plugin to turn this on, you need to offer up more details on how to accomplish this task. Correct me if I am wrong, but I think this is more usable …
@Phillippp — What Peter wants you to do is write your own plugin so you can turn on this functionality without hacking the core files. Here is how you do it:
First, create a plain text file called activate-pve.php (you can really call it anything, it just needs the .php at the end). Now, within this file add this:
<?php /** * @package Activate_PVE * @version 1.0 */ /* Plugin Name: Activate Post via Email Plugin URI: https://www.remarpro.com Description: This activates the post via email functionality in a multisite network. Author: Anonymous Version: 1.0 Author URI: https://www.remarpro.com */ add_filter( 'enable_post_by_email_configuration', '__return_true' ); ?>
Save this file and upload this into your plugins directory (root domain directory > wp-content > plugins). Once it is in there, you should be able to go to your WordPress backend and activate it in your plugin list.
After that, you should be able to go to your Settings tab, then Writing, and the Post via Email option should show up for you. I hope this helps.
Justin
Forum: Fixing WordPress
In reply to: Post by Email vanished from Settings@philippp Go into your wordpress files via FTP and look in the folder ‘wp-includes’ for a file called ‘ms-default-filters.php’. The second to last group of code is the post via email settings and they are set to false. Change that to true, and you should be good to go.
Justin
Forum: Networking WordPress
In reply to: Protect direct access to uploaded filesThanks for the update Andrea. We are all looking forward to your plugin!
Justin
Forum: Networking WordPress
In reply to: Protect direct access to uploaded filesI too would love to know of any progress with the plugin.
Well, the original developers that coded the theme decided that having a header.php file wasn’t cool enough for them. When I activated the plugin, there was no header.php file to inject the code into to force the authorization. I recoded the index.php file and added a header.php, and now, we are in business.