Menno1987
Forum Replies Created
-
Someone else already made a post about this. From the reply from the developer, I’ve downloaded the .po file and edited the translations with Poedit (a program you need to download).
Manually checked the untranslated and “fuzzy” translations to what i think they need to be.
Thanks again for the amazing plugin and wonderful support ??
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Translation issues in DutchCheers, helped me a lot!
When i go to my user-profile page, it only shows 2
<li>
links, to change my profile info and reset my password, not what my current user info is.Forum: Plugins
In reply to: [WP-Members Membership Plugin] How to set up login/registration pages?Thanks, been looking for that for a while ??
Sounds easy enough, thanks for the reply!
Forum: Plugins
In reply to: [WP-Members Membership Plugin] change dialogs and translateGot a problem with this as well. For some reason it’s not being translated to Dutch. Actually, there are several texts in English that are not being translated, mainly in the front-end. Also seen a few in the back-end that are not being translated either.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Translation issues in DutchI’ve got the same problem (wordpress 4.3.1) and also with the translations in Dutch. Did you find a solution for this yet?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] How to set up login/registration pages?Ok … so after looking a bit more in the support posts i’ve found the shortcode for the profile page…:
[wp-members page=user-profile]
Is there like an overview page or something for the shortcodes?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] How to set up login/registration pages?Ok, so i’ve found out after reading some support posts, that i can use the following shortcode for the registration page setup:
[wp-members page=register]
…but where can i see what other shortcodes i need/can use?
For the login and profile page?Forum: Plugins
In reply to: [Front End Users] "You need to be logged in" while i'm logged in…@ EtoileWebDesign, then i’ll this plugin under my favorites and maybe i can use it for future websites, thanks.
@rustaurius, Yes that is correct.
Ahh i think i know what’s going on.
The Label from the backend show up in the frontend as a field value.
The backend values don’t show up at all in the frontend.
And the field description seems to work just fine.I’m not sure if this is a bug or a conflict with another (not that i’ve got a lot of plugins installed right now).
Forum: Plugins
In reply to: [Front End Users] "You need to be logged in" while i'm logged in…I thought i finally had it working by creating an account and logging in with the plugin, but the added fields with the plugin don’t seem to store the information inputted in Edit Profile in the database, although i do get a confirmation message that my profile has been updated.
Forum: Themes and Templates
In reply to: [Zerif Lite] Text wrapping next to image galleryThanks and sorry for the late repsonse. It seems to have done the trick ??
Forum: Plugins
In reply to: [Contact Form 7] Execute code after mail sendThanx for the link, was looking for those as well.
Although i’ve already fixed it another way.In the specific form settings, go to the additional fields tab. Type in the following: on_sent_ok: “location.replace(‘https://www.website-redirect.com’);”
It’s working like a charm for me now. Hope this helps other developers in the future as well.
https://wordpress.stackexchange.com/questions/196126/contact-form-7-execute-code-after-mail-send/196132#196132Forum: Plugins
In reply to: [Contact Form 7] How to update database form sendAlready got it sorted like so …:
add_action(“wpcf7_before_send_mail”, “custom_function_name”);
function custom_function_name($cf){
if($cf->id==//idname){
//execute code
}
}