Forum Replies Created

Viewing 15 Topics - 1 through 15 (of 16 total)
Author Posts
February 22, 2015 at 1:31 pm in reply to: Post submit error (undefined) 37342
nabeel nabeel

never-mind.. it was the wp super cache plugin..

January 20, 2015 at 3:12 pm in reply to: Check if user has avatar uploaded in userfrontend pro 34604
nabeel nabeel This reply has been marked as private.
January 19, 2015 at 4:35 pm in reply to: Check if user has avatar uploaded in userfrontend pro 34516
nabeel nabeel

im getting id “1”
admin’s avatar on all accounts

January 17, 2015 at 8:01 pm in reply to: Check if user has avatar uploaded in userfrontend pro 34384
nabeel nabeel This reply has been marked as private.
January 17, 2015 at 7:11 pm in reply to: Check if user has avatar uploaded in userfrontend pro 34367
nabeel nabeel This reply has been marked as private.
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..

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 13, 2015 at 2:36 pm in reply to: Check if user has avatar uploaded in userfrontend pro 34046
nabeel nabeel

is this correct? because im only getting 111.. is it because of the gravatar default image?

has avatar: http://pinoyalbums.com/author/admin/
no avatar: http://pinoyalbums.com/author/Bella/

<?php
$user_avatar = get_user_meta( $user->ID, 'user_avatar', true );
if ( empty( $user_avatar ) ) {
echo ("111");
} else {
echo ("222");
} ?>
nabeel nabeel

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

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 10:51 am in reply to: Need help showing registration form fields in author profile 33908
nabeel nabeel

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

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 9, 2015 at 3:52 pm in reply to: File upload – cannot select multiple files 33712
nabeel nabeel

it works! thanks a lot towhid..
i suggest you add a disable max files limit checkbox on your next update.. that would be nice.. thanks again..

January 8, 2015 at 3:01 am in reply to: File upload – cannot select multiple files 33610
nabeel nabeel

i understand it is because of the max files limit check that you cant add multiple files.
can you tell me how i can remove the limit check and change it to back like the free version.
i really need this.. else the plugin will be useless for me.

January 7, 2015 at 12:52 pm in reply to: File upload – cannot select multiple files 33541
nabeel nabeel

Ok thank you..

Viewing 15 Topics - 1 through 15 (of 16 total)