DogHustler
Forum Replies Created
-
Sure, it’s https://www.egetis.com/ and https://www.egetis.com/sv/
Thanks!
Forum: Plugins
In reply to: [Simple Fields] Hack related to Simple Fields?Does the solution that @cokeyblokey suggested work?
We have over 30 old websites running Simple Fields and I need to buy as much time as I can so I can help fix (change to ACF) all of our customers websites before they get hacked. So far 3 of the websites have been hacked… =(
Hi!
I have now updated to “Ultimate Member” 2.0.52 but I still have the above mentioned problem. Anybody who can help me figure this out?
Thanks!
//Dan
Hi!
Any updates on this?
Thanks,
DanHey!
Everything is up to date, both UM and WordPress.
After some troubleshooting I think it might be the code below (that’s in the functions.php file) that has stopped working. Do you see anything wrong with it?
add_filter( 'um_template_tags_patterns_hook', 'custom_um_template_tags_patterns_hook' ); function custom_um_template_tags_patterns_hook( $search ) { $search[] = '{register_address}'; $search[] = '{register_zip}'; $search[] = '{register_city}'; $search[] = '{mobile_number}'; $search[] = '{register_family}'; $search[] = '{register_member-id}'; $search[] = '{register_confirm_family}'; return $search; } add_filter( 'um_template_tags_replaces_hook', 'custom_um_template_tags_replaces_hook' ); function custom_um_template_tags_replaces_hook( $replace ) { $replace[] = get_user_meta( um_user( 'ID' ), 'register_address', true ); $replace[] = get_user_meta( um_user( 'ID' ), 'register_zip', true ); $replace[] = get_user_meta( um_user( 'ID' ), 'register_city', true ); $replace[] = get_user_meta( um_user( 'ID' ), 'mobile_number', true ); $replace[] = get_user_meta( um_user( 'ID' ), 'register_family', true ); $replace[] = get_user_meta( um_user( 'ID' ), 'register_member-id', true ); if ( get_user_meta( um_user( 'ID' ), 'register_confirm_family', true ) ) { $replace[] = implode( ',', get_user_meta( um_user( 'ID' ), 'register_confirm_family', true ) ); } return $replace; }
Thanks!
//DanYes!
That seems to do the trick!
Thanks for the help!
//Dan
Just bumping this us, as I would really appreciate some help with my problem…
Thanks!
//Dan
Forum: Plugins
In reply to: [Contact Form 7] Sending files with special characters not working correctlyThanks Jason, you saved my day! The solution worked perfectly!
//Dan
Forum: Plugins
In reply to: [Simple Fields] Problem with repeatable fieldsI have found out part of the problem. If I deactivate TinyMCE Advanced the plugin works again so there seems to be a conflict between these two plugins.
I use the textarea field type and I think that TinyMCE tries to change the tool bar for these (as the are HTML enabled). For some reason this no longer works. But if the problem is in Simple Fields or TinyMCE, I don’t know.
//Dan
Forum: Plugins
In reply to: [Simple Fields] Problem with repeatable fieldsFor some reason it seems to work in Chrome, but not in Firefox, Safari and Opera. I’m using a MacBook…
I also use Simple Fields on the regular “Pages” post type and it works there. Very strange.
Yeah, I tried that but was not sure how to get the result I wanted.
The customer wants it to be just a list of months like this:
Jan 2012
Feb 2012
March 2012And when you click on one of these you go to a page listing all the events in the chosen month.
//Dan
Forum: Plugins
In reply to: [Simple Fields] [Plugin: Simple Fields] Can't select images from libraryThanks for this. At first it seemed like it solved the issue, as the ”Select” button was back.
But now, when I try to select a picture it first opens the media lightbox as a new page (at not as a lightbox at all). When I navigate to a picture and click ”Select” I get a blank white page…
Anybody else having this issue?