vince123
Forum Replies Created
-
Thanks for responding back, what I came to my mind suddenly as an improvement or an added feature is something like if the plugin has the ability to integrate it with email subscription/email marketing service providers it will be great, there is a plugin called “Hustle” which has similar kind of feature, if you want to have a look at that. But I think overall the plugin is easy to use and keeping it simple is the key.
Thanks
VinceForum: Plugins
In reply to: [Contact Form 7 Polylang Module] Forms Not translatedHi Aurovrata,
Thanks for the great support. I tested it for an Arabic form and the text direction was changed Right to Left, It works fine for me.
Thanks for all your efforts.Kind Regards
VinceForum: Plugins
In reply to: [Polylang] Strings not translated in Mobile versionHi there,
Kindly disregard the above request it is working fine on the mobile version also.
Thanks!
Vince- This reply was modified 6 years, 7 months ago by vince123.
Forum: Plugins
In reply to: [Contact Form 7 Polylang Module] Forms Not translatedHi Aurovrata,
Thanks for the great support and I am happy to get a response from a guy like you who is having tremendous experience in various technological domains(sorry, I did some background research on you)
exactly there are no special cf7 settings that allow changing the text-direction of a form, The activation of the cf7 polylang extension was the one I did for that
But the direction of the Arabic can be changed by going to Languages > Edit Language and change text direction but it doesn’t have any effect on the contact form 7.replacing the English content with the Arabic and also wrapping the content inside the form with a <p> tag that is right aligned was sufficient and the CF7 polylang extension was changing the text direction and also the aligning the placeholders to the right side. But for the forms that I have created after a while wasn’t actually giving anything even if I ensured that I’m using them Arabic(not the text direction nor placeholders where aligned to right).
Thanks again for the support I applied the CSS you shared and it worked in all the forms.
Kind Regards,
Vivek VincentForum: Plugins
In reply to: [Contact Form 7 Polylang Module] Forms Not translatedHi Aurovrata,
Thanks for the immediate response, the page which I shared latest is right aligned.
right aligned form
left aligned formSorry if I confused you, 1 form is translated and the other is not translated.I checked plugins both the Plugins ( CF7 Smart Grid Design Extension, Contact Form 7 Polylang extension) are active and up-to-date on my site.
Kindly share the solution.
Thanks!
VinceForum: Plugins
In reply to: [Contact Form 7 Polylang Module] Forms Not translatedHi Aurovrata,
Thanks for the quick response, the CF7 Smart Grid Design Extension and Contact Form 7 Polylang extension are Active on my site.
Please check the page in which it is working.Kind Regards,
VinceHi Nastia,
Thanks for responding back, The issue was resolved, If I have any queries or anything I will be communicating via this support forum.
Have a great day!
Kind Regards,
VinceHi Georgian,
Thanks for the support But Can you share the code for adding to the front-end wppb-edit-profile shortcode.I am not an expert in this.It will be very helpful.
Kindly share the solution.Thanks!
- This reply was modified 6 years, 7 months ago by vince123.
Hi there,
The issue was solved but how we are going to get the data from the contact form of Hustle plugin or how we can set autoresponders using this contact form itself.
Thanks
VinceHi Georgian Cocora
Thanks for the great support for this amazing plugin, the shared solution works just fine.
Thanks!
VinceHi Georgian
Thanks for the support, Yeah on my site there is no direct link to the client page that is why if we click on the back button it will take the user to his Dashboard again.
Thanks!
Hi Georgian
Thanks for the great support, your solution worked without any flaws.
Thanks!
Forum: Plugins
In reply to: [Contact Form 7] Dynamic fieldsHi barnez (@pidengmor)
Thanks, I tried the plugin it works well for my current requirement.
Thanks!
VinceHi Georgian Cocora (@raster02)
Thanks for the support, the code I added will add new fields to the user profile page visible only on the backend of the WordPress.I need the extra fields also to be visible on the Edit Profile Page that was created by adding the corresponding shortcode to the page. The code you shared created a hyperlink to the Google on Edit profile Page, It seems your intention was to take the user to the custom content (in my code it is a separate section labelled as Extra profile information).So In order to take him to that part what URL will I use. Sorry, I am not an expert, Please correct me If I am wrong.what If I don’t want a hyperlink to navigate to the extra fields I added, I may want to view the full user profile with all fields on the same page itself.Please guide me to achieve this
Please share How can we make the Log-out link into a button on the front end of the site also.
Kind Regards,
VinceHi Georgina Cocora,
Thanks for the support, the solution you shared worked without any problem but what if I want to send an email notification to some other users or email IDs. What change do I have to make that work?
The code I used is as follows
add_filter(‘wppb_edit_profile_success’, ‘wppb_email_after_edit’, 10, 3);
add_filter(‘wppb_register_success’, ‘wppb_email_after_edit’, 10, 3);
function wppb_email_after_edit($request, $form_name, $user_id){
// for more information about wp_get_current_user please see https://codex.www.ads-software.com/Function_Reference/wp_get_current_user
// this is useful in case you want something more then just the user_login and ID
if ( $form_name == ‘edit_profile’ ){
$user_id = get_current_user_id();
}$user = get_user_by(‘id’, $user_id);
$url = admin_url(“/user-edit.php?user_id=$user_id”);$to = get_option( ‘admin_email’ );
$subject = “User: $user->user_login succesfully edited his account.”;
$message = ”
<p>User: $user->user_login succesfully edited or registered his account. View his account at his account</p>
“;
$headers = “Content-type: text/html”;wp_mail($to, $subject, $message, $headers);
}Kind Regards,
Vince- This reply was modified 6 years, 8 months ago by vince123.