InvitationFascination
Forum Replies Created
-
I figured out how to change it in includes/core/um-filters-fields.php
I edited this line: $value = sprintf( __( ‘Joined | Renewed on %s’, ‘ultimate-member’ ), date_i18n( get_option( ‘date_format’ ), $value ) );
return $value;but how do I add this to my child theme so that it’s not overridden when the plugin updates?
- This reply was modified 3 years ago by InvitationFascination.
- This reply was modified 3 years ago by InvitationFascination.
Hi I’m also having an issue with custom notifications. All my products are not listed. Some were there yesterday. Now all custom notifications are gone.
https://liberationclothingonline.com
Thank you
- This reply was modified 6 years, 3 months ago by InvitationFascination.
Steve, can you explain how you have it set up. Apple pay will not show on my site either. nysscoa.org/shop
Forum: Plugins
In reply to: [Birthdays Widget] Add Birthday Field to “Add New User”But I still get this error when I add a new user:
bool(false) string(5) “Y-m-d” NULL
Warning: Cannot modify header information – headers already sent by (output started at /home1/invitav6/public_html/latinocosociety/wp-content/plugins/birthdays-widget/birthday-widget.php:146) in /home1/invitav6/public_html/latinocosociety/wp-includes/pluggable.php on line 1210Forum: Plugins
In reply to: [Birthdays Widget] Add Birthday Field to “Add New User”By the way… I am using Gravity Forms and when users register they have the option of entering their birthday to the form which in turn sends the birthday to this widget. It’s working great so far.
Forum: Plugins
In reply to: [Birthdays Widget] Add Birthday Field to “Add New User”I figured it out:
// add the field to add new user
add_action(
‘user_new_form’,
‘wporg_usermeta_form_field_birthday’
);Same issue with with Gravity Forms
Click links for screenshots:
Mobile View
Desktop ViewAlso notice the image in mobile view, the email is not responsive.
- This reply was modified 7 years, 5 months ago by InvitationFascination.
I am experiencing this too.
Click link for screenshot:
Mobile ViewI’ve also noticed that the content for the email gets pushed down as well (probably when used with Gravity Forms), on desktop and mobile.
- This reply was modified 7 years, 5 months ago by InvitationFascination.
- This reply was modified 7 years, 5 months ago by InvitationFascination.
- This reply was modified 7 years, 5 months ago by InvitationFascination.
Forum: Plugins
In reply to: [Birthdays Widget] Upcoming Birthdays not showingI decided to go back to 1.7.4 and the issue is resolved. There must be a problem with upcoming in version 1.7.5.
Forum: Plugins
In reply to: [Birthdays Widget] Problem shortcode in a pageI decided to go back to 1.7.4 and the issue is resolved. There must be a problem with upcoming in version 1.7.5.
Forum: Plugins
In reply to: [Birthdays Widget] Problem shortcode in a pageI just updated and I am having a problem with birthdays showing after December 31 instead of upcoming from current date. I only want to show 4 upcoming days, and I’m getting dates from January instead of September. You can see it here: FOP Lodge 46
Forum: Reviews
In reply to: [RSVP and Event Management] EXACTLY what I was looking forGreat review! I just installed this program to use on my wedding website – I would like to know how you made it work for you with the spreadsheet?
Thanks
I’ve tried several of the hooks. Nothing has worked yet, I’m probably not doing this right. Thanks again KTS915.
Thanks KTS915. I created the php just as you mentioned above as well as the mu-plugins folder then added the php to the folder. I then registered with incorrect information to see if the registration would be denied and unfortunately the registration went through. So this did not work ??
Thanks krumch – I appreciate you’re response but I am still lost. Also, I don’t have a mu-plugins folder, is this something I have to create? Sorry if I sound really clueless to this stuff – I just design websites and I’m not an expert at this stuff.
I want to use s2Member so members can only register if their first, last names and pin match. Otherwise, they would be denied registration.
I currently have this code that I added to my theme’s functions file with WP-Members – I also created a PIN field – but I no longer want to use WP-Members. Is there a way to do something like this with s2Member?
<?php add_action( 'wpmem_pre_register_data', 'validate_pin' ); function validate_pin( $fields ) { global $wpmem_themsg, $wpdb; $query = 'SELECT * FROM my_table WHERE LOWER( first_name ) = LOWER( "' . $fields['first_name'] . '" ) AND LOWER( last_name ) = LOWER( "' . $fields['last_name'] . '" ) LIMIT 1'; $result = $wpdb->get_results( $query, 'ARRAY_A' ); if( ! $result ) { $wpmem_themsg = 'Sorry, that name was not found.'; return; } foreach( $result as $the_user ) { $wpmem_themsg = ( $fields['pin'] != $the_user['pin'] ) ? 'Incorrect PIN!' : ''; } return; }