Xtremefaith
Forum Replies Created
-
Forum: Reviews
In reply to: [Twitget] ExcellentI missed that announcement too and this plugin was an awesome comeback, actually like it more than the one I was originally using. So I second your comment.
Forum: Plugins
In reply to: [WordPress Social Login] Blank wp-login.php upon connectingI think I figured this out!! Try this:
- Go to plugin settings, “bouncer” tab
- Look for “User Moderation” meta box
- If you are like me you have one of these set to “yes”, BUT fine print reads:
Both Admin Approval and E-mail Confirmation requires Theme My Login plugin to be installed. As there is no point for WordPress Social Login to reinvent the wheel.
User Moderation was purposely made compatible with the Theme My Login for a number reasons: That plugin is good at what he does, a hell of a lot of people are using it and many have asked for it.
Change those to “no” or install that plugin and that should do the trick, hope that helps, let me know.
Forum: Plugins
In reply to: [WordPress Social Login] Blank wp-login.php upon connectingI have the exact same problem… If it is a new user the user gets created just fine but login fails as you have described I really hope to have an answer soon, site is live.
Forum: Plugins
In reply to: wp_insert_user keeps echoing valuesUPDATE:
So I was able to debug and print the hooks attached to ‘user_register’ using a tool found here: http://www.rarst.net/script/debug-wordpress-hooks/ With that I was able to do a identify all hook calls and as expected this is all I see.>>>>> user_register 10 (object) PodioAPI -> podio_registration (1) (object) acf_everything_fields -> save_user (1)When I used the tool to post the hooks as they are called (live mode) my JSON response came back with those same hooks as well as this one: WP_Internal_Pointers::dismiss_pointers_for_new_users
But I have no idea what that is. Hoping this will help somebody to help me, I really need to get this figured out asap. At this point the only option (which does work) is to edit those lines of code at 1371 in the user.php, but I know the dangers of editing the core functionality and would rather not. Thanks you for any help I can get.Having the same issue and I’ve used your site there but it doesn’t address this problem. Closest thing is:
2. The Login button isn’t rendering correctly in IE.
I was thinking about the premium to see if it would work but from what I understand even the free version should at least render a FB login button.
Thanks for any help you can provide
Forum: Fixing WordPress
In reply to: Usernames with dots not workingTotal agreement with you on this one. I’m new to buddypress and am having the same issue, I thought it was a buddypress issue but seems from your fix its a wordpress problem.
Something like that should be made into a general option or something not just decided globally like that.
Question I have, can these adjustments be made with a hook of some sort rather than making the adjustment in the core file like that?
Try this post, it looks to be on target with what you’re attempting and it’s based on a previous post on his site that asked the same question.
http://www.advancedcustomfields.com/support/discussion/112/wp_query-orderby-field-name
I’d be surprised if Visioniz suggest works because get_field() would be based on what post id (the one you’re ABOUT to loop)? Seems like at most you could run a loop and get the ID(s) you need and run another loop but that’s not efficient at all and I have little faith it would work.
Post back how well that post helps, good luck
Forum: Plugins
In reply to: WP Less & Buddypress – less file enqueued, but isn't processedAny body else have some thoughts on this. Still yet to find a solution myself and I’m running out of ideas for this.
Forum: Plugins
In reply to: WP Less & Buddypress – less file enqueued, but isn't processedI have the same problem basically, I have a custom plugin that I want to use LESS with as well. Using the WP-Less plugin is great, and my index.php of my plugin will load the style just fine using this:
wp_register_style('featured-stories-style',KMP_PLUGIN_URL.'/modules/featured-post/featured-post.less',array(),'1.0',FALSE); wp_enqueue_style('featured-stories-style'); // WP-Less plugin must be activated to parse LESS filesBut if I try to call the enqueue function within the function of one of my plugin pages then I get nothing.
function enqueue_less() { wp_enqueue_style('featured-stories-style',KMP_PLUGIN_URL.'/modules/featured-post/featured-post.less', array(), '', 'screen, projection'); } add_action('wp','enqueue_less');Any additional thoughts as to how to approach this? I want it this way because I don’t want the LESS file enqueued until my plugin function is called (which is only on the home page).
Same problem, using ACF 3.3 and don’t see a wp_tiny_mce() call anywhere. If I deactivate plugin the error goes away so I’m pretty sure ACF is the problem child
Forum: Fixing WordPress
In reply to: next_posts_link 404 errorI’ve got the same issue right now, I’m calling it like this:
<p class="pagination"> <?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?> </p>But nothing appears to show up, I just get this “Sorry, the page your requested could not be found, or no longer exists.”
Any help in this area would be great!