Remove element from Wordpress plugin - wordpress

I am currently using a social media login plugin for my website that allows users to login via their social media account.
Currently the flow of the plugin works in a way such that after ANY user authenticate themselves through Facebook, they will be brought back to my site with 2 options, link their Facebook account with their site's account, or to register an account.
How can I edit my code such that I am able to remove the "registration account" part without editing the plugin code directly as this might affect future updates of the plugin itself. One way that I know will definitely work is to comment that section away in the plugins itself but I do not wish to touch the plugin code.
After researching, a possible way that I think might work is to apply a filter that removes the element but I am not sure if that is the correct workaround for this situation.
Can anyone shed some light on this matter?
Thank you!

I don't see a way to filter executed php code on your Wordpress website.
I got two ways of dealing with this:
1: Disallow people to register an account on your site. The registration link will probably not be displayed anymore.
2: Or comment out the code within the plugin. Remember where you edited the lines. Whenever the plugin gets an update, comment out those lines again. Or contact the owner of the plugin to issue a feature request.

Related

Remove custom email rule from wordpress site

Help a developer i hired not only he didn't finish the job, but also he left a rule that sends him a copy for everyone who sings up on my site i've been trying to remove the rule from the plugins to no avail I am new to programming, below ill place some images hopefully one can indicate me where such rule could be, i want to mention i am using fluent form and that also he had ftp access only to that specific directory as i didn't fully trusted him.
also, there are not custom snippets in the snippets section
also he never had access to cpanel, and the email is sent only from that specific form i belive as it was the only form at the time enter image description here
I can confirm that removing the plugins and removing cache and re-installing the plugins doesn't work but I can officially confirm that the issue only happens when this line is added into fluent form, methods=stripe&fname={inputs.names.first_name}&lname={inputs.names.last_name}&email={inputs.email}&cname={inputs.input_text_1}&acname={inputs.input_text_2}&phone={inputs.numeric-field}&admin_url={submission.id}
Even if only this: methods=stripe is added, still send the email to him that instructions tells the plugin where to find that email address
i tried typing the email address in php my admin and file manager in cpanel but nothing i find only logs at most of the emails sent
Since you are using Fluent forms then you should check the notification rules of that specific form.
Click on Settings of the form you want
Go to Settings & Integration(Top bar) > Email Notifications (Sidebar)
There you will see all notification rules for that form, his email is probably there, remove it.
More info here.
SOLVED: The rule came from within the theme file editor, wasn't the plugins.
the developer added his email for notification testing and never removed it.

WordPress Facebook comments error "Can't download"

I want Facebook comments on my images on WordPress. I'm using the Social Gallery Lite plugin for WordPress. It shows a comment lightbox for each image.
I have two problems:
The comments are not appearing in my moderation tool / I'm not getting notifications of new comments
Every time I add a new comment, I get an errormessage saying "Can't download", nothing more. When I refresh, the comment is added. When I add another comment on the same image, I don't get any errors. When I add another comment on another image, I get the error again.
This is what I did:
installed and acitvated the plugin
created a new app on facebook
copy pasted the APP ID in my plugin
made sure that I am the admin of the app
published the app (not even sure if this was necessary)
Am I missing a step?
Not really a coding related question here. So possibly on the wrong forum, best asked on the Wordpress community.
However, will attempt an answer here, it would seem that on the plugin itself does not need a facebook app to be created screenshot for app ID, it has a native app to do that. What you need to do is to provide your admin ID to the plugin to access your comments screenshot for admin access.

How to make changes are not visible in userside using wordpress

I want to edit contents of the existing page in wordpress.It is a live site so user side should not be changed
untill i want to publish that after all changes made to that page.Is there any plugin or what
i have to do for this.
Anyone please help me.
It depends what sort of changes. As noted above if you're channing post contents if will be enough not to publish them, but I guess you already now that.
However if you want to change appearance of the site then caching plugin might help. E.g. with w3 total cache you can do any change to template/css/php and so on and only logged in users will see changes (any non logged in user will get cached version of the page until you clean cache or cache expires).
If you have also users which are logging in into your wordpress, then I'm not aware of already made plugin that have such functionality - you probably would have to create development version of your site and test changes there.
For content - agree with previous answers.
But if you are changing the theme and want some changes to be visible only for you (admin) then you can use is_admin() function to print out different content for admin (new one) and different for other users (old one).
http://codex.wordpress.org/Function_Reference/is_admin

Wordpress Admins are notified by email when blog is posted or edited

I'm trying to find a way to alert all admins when a blog is posted. My client has multiple admins setup for his Wordpress site and wants to be alerted when one of them submits a new blog post or edits one so he can double check it for spelling errors and to make sure he approves the content and he wants to be notified with an email. I searched for a plugin for this but came up empty. Does anyone know how to do this or if their is a plugin to accomplish this that I just couldn't find?
Thank you.
You should take a look at the subscribe2 plugin. I use it on one of my membership sites to notify subscribers when something new has been posted. You can define the notification list to include whatever email addresses you like. By default, all new posts will be emailed to those addresses.
As for edits, I don't think the plugin does it by default, however it does add a checkbox at the bottom of the post editor that allows an notification to be forced.
For other developers, who are facing same issue, here is a pretty cool plugin. It is very light weight and easy to configure. Below is the link
http://wordpress.org/plugins/wp-status-notifier/

Good wordpress sitewide message system plugin

I need a plugin for wordpress that will allow people to put a message at the top of the site that may state things like upcomming events or notifications of outages of our server..etc...etc..
Anyone know of a plugin that can do this?
All the one's I've found like WP Announcement and Announcer don't seem to handle this very well. I cannot have the modal popup either.
I would suggest a roll your own version. Using a plugin framework, like PodsCMS can help with this and even make it manageable with custom admin menus. This combined with the Adminimize plugin can even help with restricting access to this feature on a user role basis.

Resources