Need help showing registration form fields in author profile

This topic contains 11 reply and 2 voices, and was last updated by nabeel 9 years, 3 months ago
Viewing 11 Posts - 1 through 11 (of 11 total)
Author Posts
January 8, 2015 at 12:34 pm 33646
nabeel how do i do this? i need the wp built-in gallery and playlist.. is this possible? Image Upload: output <?php echo do_shortcode('[gallery ids="1,2,3,4,5,6"]');?> File Upload: output <?php echo do_shortcode('[playlist ids="1,2,3,4,5,6"]');?>
January 8, 2015 at 3:00 pm 33658
towhid towhid

Hello Nabeel,

I cannot understand your question clearly. The topic title and its content, both are opposite. Would you please elaborate it more what you actually want to do.

Thank You 🙂

January 9, 2015 at 3:55 pm 33713
nabeel nabeel

on the registration form, i added “Image Upload” and “File Upload”… how do i show the files uploaded on the form to the authors profile?

like.. pull the files and show them as the output i mentioned above..

EXAMPLE:

$mp3s = get_attached_media_files_from_registration_form
foreach($mp3s as $mp3 )
$array[] = $mp3 ->ID;
echo do_shortcode('[playlist ids="' . $id_comma_separated . '"]');
January 12, 2015 at 10:51 am 33908
nabeel nabeel

i really need this… can someone please help me..

January 12, 2015 at 11:53 am 33914
towhid towhid

Hello Nabeel,

Did you try this code for you? What is the error you are getting?

Thank You 🙂

January 12, 2015 at 3:10 pm 33936
nabeel nabeel

i didn’t try it because i dont know what to use for $mp3 or how to loop it.. im not a coder.. i got that from a random post in wordpress forum..
$mp3s = get_attached_media_files_from_registration_form

can you fix the code for me please?

January 12, 2015 at 4:22 pm 33946
towhid towhid

Hello Nabeel,

I am really sorry to say that we do no provide support for customization. We only support for our built in features. You can read our support policy to know more- http://wedevs.com/priority-support/. If you need it urgent please hire a developer. Hope you will understand me.

Thank You 🙂

January 13, 2015 at 8:26 am 34005
nabeel nabeel

it’s fine.. i managed to do it my self..

January 13, 2015 at 12:12 pm 34024
towhid towhid

Hello Nabeel,

If the problem solve please mark the topic as resolved.

Thank You 🙂

January 15, 2015 at 9:07 am 34154
nabeel nabeel

the user meta is not saving for all users except admin..
i tried this code to see if meta is blank.

$user_id = get_the_author_meta( 'ID' );
$images = get_user_meta( $user_id, 'personal_playlist' );
echo "<pre>";
var_export( $images );
echo "</pre>";

admin account

array (
  0 => '12818',
  1 => '12819',
  2 => '12820',
  3 => '12821',
  4 => '12822',
  5 => '12823',
)

other user account
false

is this a bug?

January 15, 2015 at 1:25 pm 34196
towhid towhid

I think you are meaning that you want to show registration fields in profile backend. To avail this you have to navigate user frontend -> Settings -> Login / Registration -> Select profile/registration forms for user roles.These forms will be used to populate extra edit profile fields in the backend and let me know the result.

Please check following screenshot:

http://postimg.org/image/ijj51cpo3/

Thank You 🙂

January 15, 2015 at 2:33 pm 34203
nabeel nabeel

I want to pull the fields and show it in the author’s profile.. here’s the

admin profile
http://pinoyalbums.com/author/admin/

and a test account
http://pinoyalbums.com/author/bella/

both of them have playlist and gallery.. but only admin profile is working..

i did what you told me, i only have 1 registration form and i set it to the default group that im using.. then i re-uploaded the files for the “bella” account but still not showing..
my cache is off on those 2 pages..

even avatar is not showing on other accounts..

Viewing 11 Posts - 1 through 11 (of 11 total)