Forum Replies Created
-
AuthorPosts
-
lighterdayz
ParticipantThanks for your response. If I type in the address in the admin area, the country and coordinates populate. Fluent forms sends the coordinates with the address. https://app.screencast.com/ZJjS7QjhpRkFz
May 16, 2024 at 11:01 PM in reply to: ✅Datetime is not rendering per user's time Zone after saving #45446lighterdayz
ParticipantI thought the documentation says that is possible using UTC offset when saving as timestamp in the DB?
May 16, 2024 at 10:24 AM in reply to: ✅Datetime is not rendering per user's time Zone after saving #45438lighterdayz
ParticipantEdit: I had to change the page example in the orginal post because it was public. Here is a test page of the page. https://abilityjobfair.org/test876532hehgtgd/
Here is also a screen grap of the settings: https://app.screencast.com/gtgBxZACFGA1e
Any help to make these fields appear correctly in users time zones would be greatly appreciated.
Thanks again,
Margelighterdayz
ParticipantMore ifon of what I tried: Deactivated plugins (all that were not related to the page being rendered), checked debug (no errors), checked capabilities to be sure the user can delete. Job-seeker-profile is set to custom capabilties in Metabox.
lighterdayz
ParticipantThat integration mapping fields aren't included in the user registration forms, only posts.
lighterdayz
ParticipantThank you! I was able to create the text domain on the "get php code" button on the field group. I will try this.
I appreciate the help very much!
lighterdayz
ParticipantI'm still not completely clear how to do this. (read I don't know what I'm doing here.) I'm using the builder.
The file field is a User Profile field.(So, "Post Meta" and "post-meta"?)
I don't see a text domain. (is that field group?)Field title is "resume".
Can you correct this?
Thanks!---------------------------------
function ajf_unique_filename_callback( $dir, $name, $ext ) { $name = $name; return substr(md5($filename), 0, 10) . $ext; } add_filter( 'rwmb_meta_boxes', 'ajf_randomize_uploaded_filename' ); function ajf_randomize_uploaded_filename( $meta_boxes ) { $meta_boxes[] = [ <strong> 'title' => __( 'Post Meta', 'your-text-domain' ), 'id' => 'post-meta',</strong> 'fields' => [ [ 'name' => __( 'File', 'resume' ), 'id' => 'file', 'type' => 'file', 'upload_dir' => WP_CONTENT_DIR . '/uploads/resumes/', 'unique_filename_callback' => 'my_unique_filename_callback', ], ], ]; return $meta_boxes; }lighterdayz
ParticipantDo you mean unique does what I need? It will create a hash instead of the actual file name plus 1, 2, etc?
I've already set up the field in the builder and already created/directed to the directory.
I need a randomized file name based on MD5 hash so people can't guess it. Doesn't "unique" mean that is just adds a number to the end. I need the original file name sanitized and added as the md5 hash.
Can you help with that?
lighterdayz
ParticipantIs there an updated on compatibility with WP All Import Export, yet?
Thank you!February 18, 2022 at 7:58 AM in reply to: ✅Beaver Themer not displaying MB image when inserted as shortcode. #33970lighterdayz
ParticipantIs there an update on this? I need this as well. I also get the broken img icon.
<div> <img src="”[rwmb_meta" /> </div>Thanks,
MargeApril 1, 2021 at 8:16 PM in reply to: ✅What is the best way to change the default iframe size when using oEmbed? #26872lighterdayz
ParticipantI found the answer with CSS. Make a relative position container and make the embedded iframe position absolute.
April 1, 2021 at 7:57 PM in reply to: ✅What is the best way to change the default iframe size when using oEmbed? #26870lighterdayz
ParticipantSorry, i maybe wasn't clear.
I have an oEmbed metabox for the user to insert a featured video for each post. The user will upload both youtube and vimeo videos. I need the videos to populate on an archive type page, which they are now, but the sizing is wrong. Do I need to create a container that the video fits in?
I need all the videos to show in a uniform iframe size. I don't understand "you can use an html field" when I'm using an oEmbed with field connection in the beaver builder custom layout.How can I make the output area uniform?
Thanks!
lighterdayz
ParticipantI was able to get rid of the notice by clearing every cache available. I will be back in touch about the aMember Pro.
Thanks!
lighterdayz
ParticipantI believe I activated AIO instead of updating the plugin. That crashed the site since AIO is not compatible with aMember Pro. That also caused the MB Beaver Themer error.
I had to delete both the AIO and meta box themer plugins to gain access to the site and to enable aMember Pro to work for registration purposes. I could not access plugins. I have access to the dashboard, but now I can't access the plugins page at all. I tried to deactivate all plugins via database. That took the site down. That error is over riding the plugins and it shows when I deactivate all plugins.
What can I do to remove this error?
Thanks
October 24, 2019 at 9:12 AM in reply to: ✅User profile email text field not showing address using user_email as ID #16673lighterdayz
ParticipantI had that issue. See https://support.metabox.io/topic/prompt-to-change-password-shows-on-edit-form/
It shows the filter for showing the email (below). Then add the ID.
add_filter( 'rwmb_profile_info_fields', function( $fields ) { $fields['email'] = [ 'name' => 'Email', 'id' => 'user_email', 'type' => 'email', ]; return $fields; } ); -
AuthorPosts