drupal user badges not able to display image. - drupal

I have installed and enabled user badge module .Created user badge and assigned it to certain users .
However I m not able to view the image. When i click on user , select badge I can see the text associated with it but not the actual image.
What could be the problem here. IS there any way I can get the documentation for the module?

Which version of User Badges are you using? I think the problem should be solved now as the User Badges module has a production version out and most of the bugs have been taken care of. So, please upgrade to the latest 7.x-1.0 recommended release.
We were not able to add a badge in the Rules action because I think, The Drupal-7 version of User Badges was not integrated with Rules. Should do comment but can't

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.

WP toolbar only showing on frontend for some admins

We have several admins who all have the "Show toolbar when viewing site" option checked in their user profile but only some of them are actually able to see the toolbar. Others have the option checked but the toolbar doesn't show up. Additionally, we have a multisite setup and they are able to see the toolbar on one of the sites but not the other site.
After a bit of research, I've checked that is included in our footer.php file and I tried deactivating a plugin called "Members" that wasn't activated on the site where they can see the toolbar, however, nothing seemed to change. While I thought it could be another plugin issue, what doesn't make sense is that it's not an issue for all admins, just a few.
Is there anything else that I should be checking?
Sometimes instead of checking if a user "is_admin()" plugins or functions will check which permissions users have to determine what features they can or cannot see. I might check to see if the users in question have different permissions despite being admins. Perhaps create some new admin users to test if it is an issue with user IDs after a certain number.
Consider turning on debugging to see if any errors prevent the bar from displaying. Also try the query monitor plugin. Check for errors and query issues with and without the suspected conflicting plugin activated.

How to translate all messages in the Auth0 Wordpress plugin?

I found how to translate most of the Lock 10 widget by setting the 'Extra settings' under 'Advanced' tab to e.g. the following:
{"language":"nl"}
That works fine for most of the Lock widget, but not for everything, e.g.
"Login with WordPress username"
"There was a problem with your log in"
and probably some more.
Is there some other setting I would need to change?
The text "Login with WordPress username" belongs to the Auth0 Wordpress plugin itself and not the Auth0 Lock widget so that's why you won't see any changes despite changing the Lock language setting; the plugin does not currently support I18N.
If you really need to display that option you can submit an improvement request to support I18N on the plugin itself; you can use the GitHub repository (https://github.com/auth0/wp-auth0) to submit the issue. Additionally, if you don't really require that option to be enabled you can hide the text by disabling the option WordPress login enabled in the plugin settings.
Regarding the other piece of text you mentioned I wasn't able to track the source of it, but if it comes from Lock you should also try to use the languageDictionary; see the following links for additional information on this:
Lock Customization - languageDisctionary
Lock Customization - Error Messages
plugins usually come with .po files that contain the plugin strings in the default language, one way to translate the default messages a plugin will show is using Locotranslate
install locotranslate plugin
then go to locotranslate > plugins> choose your plugin> choose a language you want to translate to

admin menu missing when upgrading from drupal 6 to drupal 7

I just upgraded my website from Drupal 6 to drupal 7. For some reason the new administration menu that is suppose to go across the top of the page is not showing up at all. I have followed the upgrade path directions without success.
I have also tried re uploading the sites / all and themes directories but that did not change anything. I have ran update.php as well.
Thanks..
Do you have the core module, Toolbar, enabled? If not, go to your site/?q=admin/modules and enable it. Also, if you're not using Garland or some other generic theme, enable one for administrative use. It's possible your theme is overwriting the region where the toolbar is supposed to dispaly
I just ran into the same problem, and it was not just the top menu not showing up, the appearance and module link were not accessible at all.
turns out it was because the user account I used to login was not the FIRST user aka the SUPER user. Since I don't have the password of the "first" admin user, I had to change the UID of my user account to 1.
You can create a new user with UID = 1
INSERT INTO users (uid, name, pass) VALUES ('1', 'yourname', md5('yourpassword'));

Drupal 7 user registration: creating mandatory gender/city fields

I'm a Drupal newbie, but have successfully installed it at a CentOS 5.5 Linux, PostgreSQL 8.4.7, PHP 5.3 machine.
I've chosen minimal installation and then enabled following modules: Block, Image, Locale, OpenID (hope to add Google accounts later...) and Search. The User module etc. are enabled by default anyway.
My problem is:
I don't know how to add Gender/City fields and make them mandatory.
As a SPAM-fighting measure at my old phpBB 3 site I have a mandatory question for new users about their gender: Robot/Male/Female and the first answer is default and prevents the new user from registering.
Is it possible to do the same in Drupal 7?
And I hope it is doable without installing any additional modules as the stock install is easier to update. (That is what I was doing with my old phpBB site - with no mods installed).
Thank you for your answers! Alex
UPDATE:
Here is my Field module screenshot, does it look ok?
Maybe my problem is that List is shown as disabled?
First, note that there is a huge difference between Drupal modules and phpBB mods. Drupal provides API's which allows modules to integrate with Drupal without changing any code. You can just download them into a folder, enable and they are running.
And yes, what you are trying to do is possible without any additional modules. Just go to admin/config/people/accounts/fields, add a Gender field of Type "List (text)" (If that is not available, you might need to enable it, but it part of Drupal core), then, enter the allowed values and on the second page, check the "required" and "shown on registration form" checkboxes and you are good to go.

Resources