Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 26 total)
  • Author
    Posts
  • in reply to: Can't populate coordinates with binding address field #48289
    lighterdayzlighterdayz
    Participant

    Thanks 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

    lighterdayzlighterdayz
    Participant

    I thought the documentation says that is possible using UTC offset when saving as timestamp in the DB?

    lighterdayzlighterdayz
    Participant

    Edit: 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,
    Marge

    in reply to: Create a Delete Post link on Custom Post #42014
    lighterdayzlighterdayz
    Participant

    More 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.

    in reply to: Using Fluent Forms to create user profiles #40770
    lighterdayzlighterdayz
    Participant

    That integration mapping fields aren't included in the user registration forms, only posts.

    in reply to: Randomize File Name in Document Upload #40759
    lighterdayzlighterdayz
    Participant

    Thank 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!

    in reply to: Randomize File Name in Document Upload #40753
    lighterdayzlighterdayz
    Participant

    I'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;
    }
    in reply to: Randomize File Name in Document Upload #40685
    lighterdayzlighterdayz
    Participant

    Do 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?

    in reply to: WP All Import Export #40079
    lighterdayzlighterdayz
    Participant

    Is there an updated on compatibility with WP All Import Export, yet?
    Thank you!

    lighterdayzlighterdayz
    Participant

    Is there an update on this? I need this as well. I also get the broken img icon.

    <div> <img src="”[rwmb_meta" />
    </div>

    Thanks,
    Marge

    lighterdayzlighterdayz
    Participant

    I found the answer with CSS. Make a relative position container and make the embedded iframe position absolute.

    lighterdayzlighterdayz
    Participant

    Sorry, 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!

    in reply to: Fatal Error after update AIO can't access Plugins #17198
    lighterdayzlighterdayz
    Participant

    I was able to get rid of the notice by clearing every cache available. I will be back in touch about the aMember Pro.

    Thanks!

    in reply to: Fatal Error after update AIO can't access Plugins #17197
    lighterdayzlighterdayz
    Participant

    I 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

    lighterdayzlighterdayz
    Participant

    I 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;
    } );
Viewing 15 posts - 1 through 15 (of 26 total)