SuitePlugins
Forum Replies Created
-
Yes, that is one way to update the name. I have also updated the plugin language file.
Some of our plugins have the ability to rename tabs and labels from the admin.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Gallery on the profile’s main tabI am not sure which issue you are experiencing so I will post some instructions here and close this topic. Feel free to open a new one if this doesn’t resolve your issue.
Go to WP Admin > Ultimate Member > Settings
Click Appearance then Profile Menu
You will see the Gallery menu listed
Save settings
Test it on profileIf you are trying to get the features photos on the main tab. Make sure you have chosen a default tab in Ultimate Member settings and make sure that Gallery Setting “Show on Main Tab” is set to Yes. It’s good to just hit save on each setting page just to be doubly sure.
Again, if you continue to have issues with this plugin. Feel free to open a next topic for it.
Forum: Plugins
In reply to: [Advanced XProfile Fields for BuddyPress] Max characters limit is not workingI went through the plugin and I saw that it is working, can you tell me more about your scenario. Like do you not see the message displayed at all? Is this on registration form only?
I also looked into the characters remaining limit while typing and I love the idea but I wasn’t able to include it in this update so I will keep it on the list of improvements to hopefully add in another update.
Forum: Plugins
In reply to: [Advanced XProfile Fields for BuddyPress] No Validation on Registration PageThanks for the update on the registration page. I have fixed this in version 1.0.4
Please let me know what you think.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Tabs not showing on profileI see. The slug is absolutely necessary. You can enter “bills” as the slug.
Forum: Plugins
In reply to: [Advanced XProfile Fields for BuddyPress] Max characters limit is not workingI will have a look at this. I will keep you posted.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Tabs not showing on profileThank you for the message @samwpdeveloper
There was a change to the Ultimate Member plugin, please try this
Go to WP Admin > Ultimate Member > Settings
Click Appearance then Profile Menu
You will see your new tab listed
Save settings
Test it on profileLet me know if this helps.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Conflict Issue with UMHey @jamestheall
Can you tell me how your tabs were configured? Did you add a profile form as a shortcode to the plugin?
Forum: Reviews
In reply to: [UM Events] more problems than they have any useful useThank you for your feedback, I wish you had a better experience with the service and plugins but you have not. Nevertheless, if you submitted a message about a bug, it will be dealt with or it may have been dealt with but you weren’t notified.
I try to address everything all issues, no matter when the issue was submitted or the severity. Sending a message via the contact form would have brought your issues with SuitePlugins at the forefront and it would have been more appreciated as opposed to rating your general experience on this particular plugin. This shows me, how much the service provided needs to improved so I will begin working on that and I will start by pulling up your tickets, replying what items have been fixed and making a plan for any remainders and feature requests.
Again, thank you for your feedback. I will try to do better.
Thank you for your feedback, I wish you had a better experience with the service and plugins but you have not. Nevertheless, if you submitted a message about a bug, it will be dealt with or it may have been dealt with but you weren’t notified.
I try to address everything all issues, no matter when the issue was submitted or the severity. Sending a message via the contact form would have brought your issues with SuitePlugins at the forefront and it would have been more appreciated as opposed to rating your general experience on this particular plugin. This shows me, how much the service provided needs to improved so I will begin working on that and I will start by pulling up your tickets, replying what items have been fixed and making a plan for any remainders and feature requests.
Again, thank you for your feedback. I will try to do better.
You want to add your code through a hook. So your code should look more like this
function send_sms_after_registration( $user_id = 0 ) { // Authorisation details. $username = “[email protected]”; $hash = “66ade0f0c30253145b390866621d163eccbd52181466b0205aee7ba2e6d9ea82”; // Config variables. Consult http://api.textlocal.in/docs for more info. $test = “0”; // Data for text message. This is the text message data. $sender = “TXTLCL”; // This is who the message appears to be from. $numbers = “910000000000”; // A single number or a comma-seperated list of numbers $message = “This is a test message from the PHP API script.”; // 612 chars or less // A single number or a comma-seperated list of numbers $message = urlencode($message); $data = “username=”.$username.”&hash=”.$hash.”&message=”.$message.”&sender=”.$sender.”&numbers=”.$numbers.”&test=”.$test; $ch = curl_init(‘http://api.textlocal.in/send/?’); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); // This is the result from the API curl_close($ch); } add_action( 'um_registration_complete', 'send_sms_after_registration', 12, 1 )I am not familiar with the API but here are few suggestions. Use wp_remote_post instead of CURL. You can use the $user_id with the function get_user_by to get user details or pull what you need from the user meta table.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Gallery on the profile’s main tabThanks for the heads up. I’ll begin investigation now. Is there a specific feature that is not working? Or is there any error codes or weirdness you can share to help with investigations?
Hey Frank,
Can you paste more of the script that you have in your functions.php file? There might be something related to how it’s written or where it’s written and I would love to assist.
Ok, I see.
You can add this snippet and it will stop the Cancel and Submit button from showing
function sp_hide_profile_action() { remove_action( 'um_after_profile_fields', 'um_add_submit_button_to_profile', 1000 ); } add_action( 'init', 'sp_hide_profile_action' );It all depends on how things are saved and stored. I suggest debugging each line and checking to see that you are receiving the correct data and the correct format /type that you expect.