Taylor Baybutt
Forum Replies Created
-
I’m having this issue as well and have both plugins fully updated
Forum: Plugins
In reply to: [The Wordpress Bar] Any alternatives?Same question. Would love to have a separate template to load external links into with my menu bars. I am designing a site to function in an iOS homescreen shortcut and I don’t want to show the forward and back browser buttons but it is necessary at this point.
Forum: Plugins
In reply to: [The Wordpress Bar] Any alternatives?Same question. Would love to have a separate template to load external links into with my menu bars. I am designing a site to function in an iOS homescreen shortcut and I don’t want to show the forward and back browser buttons but it is necessary at this point.
Forum: Plugins
In reply to: [JC Submenu] Limit number of tags loadedAwesome! thanks this works great.
Forum: Plugins
In reply to: [JC Submenu] Limit number of tags loadedFor anyone with this issue, find the file SubmenuWalker.php and on line 542 add the number parameter to limit to however many you need.
'number' => 30
AND, it works!
In case anyone comes across this looking for the solution, it is as simple as this;
function password_protected_check_ip( $bool ) { // Check the IP address here and return 0 (ie disabled) if you want to allow the IP address if($_SERVER['REMOTE_ADDR'] == "160.79.66.166") { $bool = 0; } return $bool; } add_filter( 'pre_option_password_protected_status', 'password_protected_check_ip' );
Awesome!! Thanks very much Ben. Will try to implement now.
Well, at my job, we are building a repository of cool tech innovations. Currently, people are accustomed to just sending an all staff email to share their finds. I have added the wordpress post email to our all staff list so that we can capture all items that people share around. However, not every all staff email is tech related, nor are any of them formatted into a post.
Has anyone else encountered this? I know I can set a function to change the post_status on publish but is there a hook for posts posted through email only? Thanks!!
Forum: Fixing WordPress
In reply to: "Insert/Edit link" not working after WordPress 3.5 upgradeI am having the same issue. I just updated almost all of my plugins. Stumped.
Forum: Plugins
In reply to: [Social Photo Fetcher] [Plugin: Facebook Photo Fetcher] Setting Up a Cron JobEver figure this out?
Thanks for this, it does work. However, do you know how you would go about getting access to page albums again? I have one site where everything is still working but on another, I can only sync my personal albums. I tried adding the permission ‘manage_pages’ but that didn’t do it.
Thanks!
I am having this issue with the facebook sync plugin. It is importing duplicate entries, thousands of them.
Forum: Hacks
In reply to: Can one set post thumbnail from a function?That looks about right. Thanks so much! I will attempt to do it this weekend.