<?php profile_picture_upload(); ?>
<?php profile_picture_show(); ?>
Hi Jay,
You mention about a "first" and "second" user profile picture. There should only be one. Are you saying if the user has uploaded more than one photo, it reverts back to showing the "first uploaded picture"?
Hi Jesse,
I've done my modification so that I can change in admin site the picture for the users I want a picture shown...
I'll write it here if someone needs to do it. (Surely not the best way to do it.. but it works)
1step: install the orginal plugin (from Jesse)
2step: rename (or delete) the 'no_picture.jpg' in the plugin directory
3step: in the plugin directory edit the file index.php and search line 61,
replace $user_id =..... with $user_id = osc_user_id ();
4step: delete line 73 if( osc_is_web_user_logged_in() ) {
and delete line 89 } //if logged-in
5step: edit item.php (in folder of your theme)
and write <?php profile_picture_show(); ?> (Like asked in the original plugin)
6step: in the folded ?example.com?/oc-admin/themes/modern/users
edit the file frm.php
and place after the text </form> this text: <?php profile_picture_upload(); ?>
EVERYTIME BACKUP YOUR ORIGINAL FILES BEFORE CHANGING THEM
(THIS IS NOT THE BEST WAY TO DO IT, IF YOU DON'T NEED IT, THAN LET THE PLUGIN FROM JESSE IN ORIGINAL - IS BETTER FOR FUTURE UPDATES)
kind regards
Hi all,
Here's a simple plugin that will upload a picture and display it on the profile page, or where ever you'd like.
1) Download and install the plugin
2) Place this code on the theme page, user-profile.php - this will allow users to upload their profile pictureCode: [Select]<?php profile_picture_upload(); ?>
3) Place this code on pages you wish to display the profile picture, including user-public-profile.php and item.phpCode: [Select]<?php profile_picture_show(); ?>
That's it.
This is a no-frills plugin, meaning it doesn't do anything but upload and display. The uploaded files are NOT re-sized, but are limited to file size (set at 500kb initially, you can change that).
You'll probably want to edit the file index.php within the plugin folder. There are several fields you can edit, including the display width of the picture.
echo '<meta http-equiv="refresh" content="0; ,URL='.$url.'">';
echo '<meta http-equiv="refresh" content="0; url='.$url.'">';
<div id="description">
<h2><?php _e('Profile'); ?></h2>
<?php profile_picture_show(); ?>
just put code outside <form></form>!can you explain?
Hi Jesse,
This plugin works very well for the most part. I did how ever find a small bug. When ever a user logs out it shows the first users profile picture. It will show the second users profile picture if he logs in but once he logs out it goes back to the first users profile picture. Also I placed the code in the header.php file of my theme.
Jay
function comment_picture_show(){
// Configuration - Your Options ///////////////////////////////////////////////////////
$width = '100';
$height = ''; // height is optional. If you use a height, *MAKE SURE* it's proportional to the WIDTH
////// ***** No modifications below here should be needed ***** /////////////////////
// First, check to see if user has existing profile picture...
$user_id = osc_comment_user_id(); // the user id of the user profile we're at
$conn = getConnection();
$result=$conn->osc_dbFetchResult("SELECT user_id, pic_ext FROM %st_profile_picture WHERE user_id = $user_id ", DB_TABLE_PREFIX, $user_id);
if($result>0) //if picture exists
{
$upload_path = osc_plugins_path().'profile_picture/images/';
$modtime = filemtime($upload_path.'profile'.$user_id.$result['pic_ext']); //ensures browser cache is refreshed if newer version of picture exists
// This is the picture HTML code displayed on page
echo '<img class="avatar" src="'.osc_base_url() . 'oc-content/plugins/profile_picture/images/profile'.$user_id.$result['pic_ext'].'?'.$modtime.'" width="'.$width.'" height="'.$height.'">'; // display picture
}
else{
echo '<img class="avatar" src="'.osc_base_url() . 'oc-content/plugins/profile_picture/no_picture.jpg" width="'.$width.'" height="'.$height.'">';
}
} //end profile_picture_show()
<?php comment_picture_show(); ?>
@kenbotong
how this will work? i mean unregistered user can see this?
<div class="comment">
<div id="main" class="modify_profile">
<h2><?php _e('Update your profile', 'modern') ; ?></h2>
<?php UserForm::location_javascript(); ?>
<div class="row">
<?php profile_picture_upload(); ?>
</div>
<form action="<?php echo osc_base_url(true) ; ?>" method="post">
<input type="hidden" name="page" value="user" />
<input type="hidden" name="action" value="profile_post" />
<fieldset>
<h2><?php _e('Profile', 'modern'); ?></h2>
<ul id="user_data">
<li><?php _e('Full name', 'modern'); ?>: <?php echo osc_user_name(); ?></li>
<li><?php _e('Address', 'modern'); ?>: <?php echo $address; ?></li>
<li><?php _e('Location', 'modern'); ?>: <?php echo $location; ?></li>
<li><?php _e('Website', 'modern'); ?>: <?php echo osc_user_website(); ?></li>
<li><?php _e('User Description', 'modern'); ?>: <?php echo osc_user_info(); ?></li>
</ul>
</div>
<?php profile_picture_show(); ?>
<div id="description" class="latest_ads">
<h2><?php _e('Latest listings', 'modern'); ?></h2>
<table border="0" cellspacing="0">
<tbody>
<?php UserForm::location_javascript(); ?>
<div class="row">
<?php profile_picture_upload(); ?>
</div>
<form action="<?php echo osc_base_url(true) ; ?>" method="post">
Hi Jesse, I have just downloaded your code and tried to add it to the pages you indicated.
Code: [Select]
<?php UserForm::location_javascript(); ?>
<div class="row">
<?php profile_picture_upload(); ?>
</div>
<form action="<?php echo osc_base_url(true) ; ?>" method="post">
I put it as you described in one of your posts, however, when I click on upload the page reverts back to the users dashboard and when I return no image has been uploaded.
I tried putting it within the form (which you said was a no-no), but I wanted to see as I like to test things out, and when I uploaded it this time, a blue bar appeared saying settings changed but no picture uploaded.
I can't get it to work and don't know what else to do, can you or anyone else point me in the right direction?
I am using OS Class 3.0.2 if that helps.
cheers
<div class="user-card">
<img src="http://www.gravatar.com/avatar/<?php echo md5( strtolower( trim( osc_user_email() ) ) ); ?>?s=120&d=<?php echo osc_current_web_theme_url('images/user_default.gif') ; ?>" />
<ul id="user_data">
<li class="name"><?php echo osc_user_name(); ?></li>
<?php if( osc_user_website() !== '' ) { ?>
<li class="website"><a href="<?php echo osc_user_website(); ?>"><?php echo osc_user_website(); ?></a></li>
<?php } ?>
<?php if( $address !== '' ) { ?>
<li class="adress"><?php printf(__('<strong>Address:</strong> %1$s'), $address); ?></li>
<?php } ?>
<?php if( $location !== '' ) { ?>
<li class="location"><?php printf(__('<strong>Location:</strong> %1$s'), $location); ?></li>
<?php } ?>
</ul>
</div>
<img src="http://www.gravatar.com/avatar/<?php echo md5( strtolower( trim( osc_user_email() ) ) ); ?>?s=120&d=<?php echo osc_current_web_theme_url('images/user_default.gif') ; ?>" />
<?php profile_picture_show(); ?>
Otherwise everything works fine!
3) Place this code on pages you wish to display the profile picture, including user-public-profile.php and item.phpCode: [Select]<?php profile_picture_show(); ?>
That's it.
Please, do NOT PM me. Post all questions to the forum. If I have time, and I know the answer, I will reply.so I decided to wait for him to replay.
<div id="sidebar">
<div class="user-sidebar">
<a href="../user/profile/<?php echo osc_logged_user_id(); ?>" target="_blank"><?php _e('Preview Public Profile', 'realestate'); ?></a>
<?php echo osc_private_user_menu() ; ?>
</div>
</div>
Updated 12/31/2012
The updates include:
- Fixed size issue preventing pictures from showing in Internet Explorer
- Ability to delete a photo and revert back to default "no-photo"
- Default photo is now displayed in the Dashboard on the page "My account" (assuming you've placed the correct code on that page as per plugin instructions)
Hi all,
Here's a simple plugin that will upload a picture and display it on the profile page, or where ever you'd like.
1) Download and install the plugin
2) Place this code on the theme page, user-profile.php - make sure this code is place OUTSIDE of the existing form on that page - this function will allow users to upload their profile pictureCode: [Select]<?php profile_picture_upload(); ?>
3) Place this code on pages you wish to display the profile picture, including user-public-profile.php and item.phpCode: [Select]<?php profile_picture_show(); ?>
That's it.
This is a no-frills plugin, meaning it doesn't do anything but upload and display. The uploaded files are NOT re-sized, but are limited to file size (set at 500kb initially, you can change that).
You'll probably want to edit the file index.php within the plugin folder. There are several fields you can edit, including the display width of the picture.
How To Use
To upload a picture, you just need to login to your account, then from the account manager, click on My account.
08/07/2014 - 12:02:39 [ OPERATION OK ] Connected to 'mydomains_osclass': [DBHOST] = localhost | [DBUSER] = roothow to remove this message.
08/07/2014 - 12:02:39 [ OPERATION OK ] SELECT user_id, pic_ext FROM oc_t_profile_picture WHERE user_id = '1'
08/07/2014 - 12:02:39 [ OPERATION OK ] SELECT user_id, pic_ext FROM oc_t_profile_picture WHERE user_id = '1'
08/07/2014 - 12:02:39 [ OPERATION OK ] Connection with 'mydomains_osclass' released properly
Hi all,
I installed this plugin and working well. Thanks for this plugin also giudence.
But at the footer of the public profile page on my account page Below message will be displayed.Quote08/07/2014 - 12:02:39 [ OPERATION OK ] Connected to 'mydomains_osclass': [DBHOST] = localhost | [DBUSER] = rootReally don't know how to hide or how to remove this message.
08/07/2014 - 12:02:39 [ OPERATION OK ] SELECT user_id, pic_ext FROM oc_t_profile_picture WHERE user_id = '1'
08/07/2014 - 12:02:39 [ OPERATION OK ] SELECT user_id, pic_ext FROM oc_t_profile_picture WHERE user_id = '1'
08/07/2014 - 12:02:39 [ OPERATION OK ] Connection with 'mydomains_osclass' released properly
$user_id = osc_comment_user_id(); // the user id of the user profile we're at)
<?php
$lastComments = ItemComment::newInstance()->getLastComments( 20 ) ;
View::newInstance()->_exportVariableToView('comments', $lastComments);
while (osc_has_item_comments()) {
<div class="bienvenida-block">
<?php comment_picture_show(); ?>
</div>
</div>
<?php if(osc_comment_field('b_active')) { ?>
<strong><?php echo osc_comment_author_name() ; ?></strong><br/> <?php _e('a opinado del anuncio') ; ?><br/> <i><a title="<?php echo osc_comment_body() ; ?>" href='<?php echo osc_base_url(true) . '?page=item&id=' . osc_comment_field('fk_i_item_id') ; ?>' id='dt_link'><?php echo osc_comment_title() ; ?></a><br/><?php echo substr(osc_comment_body(), 0, 45) ; ?>...</i><br />
<?php } ?>
<?php } ?>
while (osc_has_item_comments()) {
<?php if(osc_comment_field('b_active')) { ?>
<div class="bienvenida-block">
<?php comment_picture_show(); ?>
</div>
</div>
<?php // if(osc_comment_field('b_active')) { ?>
I cant get few words translated...
"Browse..."
"No file selected."
I think I manage with rest but this one.
Any ideas where they are located?
Hi,
The plugin does not work with me to the theme osclasswizards_2.0.2.zip
How to make it work ???
-------------------------------------------------------------------
In French
Salut,
Le plugin ne fonctionne pas chez moi avec le thème osclasswizards_2.0.2.zip
Comment faire pour que ça fonctionne ???
function profile_picture_return(){
$maxwidth = '120';
$user_id = osc_user_id();
$conn = getConnection();
$result=$conn->osc_dbFetchResult("SELECT user_id, pic_ext FROM %st_profile_picture WHERE user_id = '%d' ", DB_TABLE_PREFIX, $user_id);
if($result>0) {
$upload_path = osc_plugins_path().'profile_picture/images/';
list($width, $height, $type, $attr)= getimagesize($upload_path.'profile'.$user_id.$result['pic_ext']);
$ratio = $width/$height;
$height = $maxwidth/$ratio;
$modtime = filemtime($upload_path.'profile'.$user_id.$result['pic_ext']);
return '<img src="'.osc_base_url() . 'oc-content/plugins/profile_picture/images/profile'.$user_id.$result['pic_ext'].'?'.$modtime.'" width="'.$maxwidth.'" height="'.$height.'">'; // display picture
}
else{
return false;
}
}
} //end profile_picture_show()
BEFORE// This is needed in order to be able to activate the plugin
<div class="user-card">
<figure><img class="img-responsive" src="http://www.gravatar.com/avatar/<?php echo md5( strtolower( trim( osc_user_email() ) ) ); ?>?s=400&d=<?php echo osc_current_web_theme_url('images/default.gif') ; ?>" /></figure>
<div class="user-card">
<?php
if(profile_picture_return()) {
$user_image = profile_picture_return();
} else {
$user_image = '<img class="img-responsive" src="http://www.gravatar.com/avatar/'.md5(strtolower(trim(osc_user_email()))).'?s=400&d='.osc_current_web_theme_url('images/default.gif').'" />';
}
?>
<figure>
<?php echo $user_image; ?>
</figure>
function profile_picture_upload(){
Tofunction profile_picture_upload($user_id = ''){
$user_id = osc_logged_user_id(); // the user id of the user profile we're at
To if ($user_id == '') {
$user_id = osc_logged_user_id(); // the user id of the user profile we're at
}
<?php profile_picture_upload($user['pk_i_id']); ?>
<ul id="error_list"></ul>
<form name="register" action="<?php echo osc_admin_base_url(true); ?>" method="post">
function profile_picture_thumb($file, $dest, $desired_width) {
$source_image = imagecreatefromjpeg($file);
$width = imagesx($source_image);
$height = imagesy($source_image);
$desired_height = floor($height * ($desired_width / $width));
$virtual_image = imagecreatetruecolor($desired_width, $desired_height);
imagecopyresampled($virtual_image, $source_image, 0, 0, 0, 0, $desired_width, $desired_height, $width, $height);
if (imagejpeg($virtual_image, $dest)) {
return true;
} else {
return false;
}
}
function profile_picture_upload($user_id = ''){
profile_picture_thumb($upload_path . 'profile'.$user_id.$ext, $upload_path . 'profile'.$user_id.$ext, $maxwidth);
if($result==0) {
$conn->osc_dbExec("INSERT INTO %st_profile_picture (user_id, pic_ext) VALUES ('%d', '%s')", DB_TABLE_PREFIX, $user_id, $ext);
}
else {
$conn->osc_dbExec("UPDATE %st_profile_picture SET pic_ext = '%s' WHERE user_id = '%d' ", DB_TABLE_PREFIX, $ext, $user_id);
}
@Teseo
Muchas gracias, esto funciona.
Saludos
Chofi
Hi Jesse,
great hit again,
is it possible to upload user picture in user- profile.php > update your profil > and show in public-profile or item.php
to have profil updates on one page
THX for This Plugin I will use it :)
In the upload of profile picture. I am having problem with the .png and .gif extensions for some reason its not uploading. And when I tried to check the value of the variable it wont show.
...
but for .jpg file extension it will execute the certain code. Your answer will be greatly appreciated
Thanks,
Cheryl
define('WEB_PATH', 'http://www.domain.tld/');
i have had the www. subdomain selected this way since i started using osclass . but never knew it would have such an effect. define('WEB_PATH', 'http://domain.tld/');
I cant get few words translated...
"Browse..."
"No file selected."
I think I manage with rest but this one.
Any ideas where they are located?
You can't change this words because they are browser specified, you only can try to change this with some css hack like this (http://stackoverflow.com/a/32919644/5555953)
Hi,
The plugin does not work with me to the theme osclasswizards_2.0.2.zip
How to make it work ???
-------------------------------------------------------------------
In French
Salut,
Le plugin ne fonctionne pas chez moi avec le thème osclasswizards_2.0.2.zip
Comment faire pour que ça fonctionne ???
It is a little bit tricky, but i have fixed it, so it works on osClass 3.6 with theme OsclassWizards
This theme supports Avatars from Gravatar, because of that you have to change some files to work it properly. At first...
File: ../oc-content/plugins/profile_picture/index.php
ToDo: Add the following CodeCode: [Select]function profile_picture_return(){
$maxwidth = '120';
$user_id = osc_user_id();
$conn = getConnection();
$result=$conn->osc_dbFetchResult("SELECT user_id, pic_ext FROM %st_profile_picture WHERE user_id = '%d' ", DB_TABLE_PREFIX, $user_id);
if($result>0) {
$upload_path = osc_plugins_path().'profile_picture/images/';
list($width, $height, $type, $attr)= getimagesize($upload_path.'profile'.$user_id.$result['pic_ext']);
$ratio = $width/$height;
$height = $maxwidth/$ratio;
$modtime = filemtime($upload_path.'profile'.$user_id.$result['pic_ext']);
return '<img src="'.osc_base_url() . 'oc-content/plugins/profile_picture/images/profile'.$user_id.$result['pic_ext'].'?'.$modtime.'" width="'.$maxwidth.'" height="'.$height.'">'; // display picture
}
else{
return false;
}
}
AFTERCode: [Select]} //end profile_picture_show()
BEFORECode: [Select]// This is needed in order to be able to activate the plugin
File: ../oc-content/themes/osclasswizards/item-sidebar.php
File: ../oc-content/themes/osclasswizards/user-public-profile.php
ToDo: Change the following Code in both filesCode: [Select]<div class="user-card">
<figure><img class="img-responsive" src="http://www.gravatar.com/avatar/<?php echo md5( strtolower( trim( osc_user_email() ) ) ); ?>?s=400&d=<?php echo osc_current_web_theme_url('images/default.gif') ; ?>" /></figure>
ToCode: [Select]<div class="user-card">
<?php
if(profile_picture_return()) {
$user_image = profile_picture_return();
} else {
$user_image = '<img class="img-responsive" src="http://www.gravatar.com/avatar/'.md5(strtolower(trim(osc_user_email()))).'?s=400&d='.osc_current_web_theme_url('images/default.gif').'" />';
}
?>
<figure>
<?php echo $user_image; ?>
</figure>
If you follow the general installation instructions from this plugin, you now should be able to see the uploaded profile pictures on the item sidebar and the public profil page.
Modification: Use Plugin in Backend
For all, they want to moderate the Profile Pictures in Admin, here is a little fix, to enable the upload and delete function in Backend
File: ../oc-content/plugins/profile_picture/index.php
ToDo: Change the following CodeCode: [Select]function profile_picture_upload(){
ToCode: [Select]function profile_picture_upload($user_id = ''){
AND THENCode: [Select]$user_id = osc_logged_user_id(); // the user id of the user profile we're at
ToCode: [Select]if ($user_id == '') {
$user_id = osc_logged_user_id(); // the user id of the user profile we're at
}
Then you can add the Upload function to the user profile page
File: ../oc-admin/themes/modern/users/frm.php
ToDo: Add the following CodeCode: [Select]<?php profile_picture_upload($user['pk_i_id']); ?>
AFTERCode: [Select]<ul id="error_list"></ul>
BEFORECode: [Select]<form name="register" action="<?php echo osc_admin_base_url(true); ?>" method="post">
Modification: Modifiy size of image after upload
If you want to change the size of your images after upload, you can add this little hack to your plugin. It's pretty easy to implement.
File: ../oc-content/plugins/profile_picture/index.php
ToDo: Add the following CodeCode: [Select]function profile_picture_thumb($file, $dest, $desired_width) {
$source_image = imagecreatefromjpeg($file);
$width = imagesx($source_image);
$height = imagesy($source_image);
$desired_height = floor($height * ($desired_width / $width));
$virtual_image = imagecreatetruecolor($desired_width, $desired_height);
imagecopyresampled($virtual_image, $source_image, 0, 0, 0, 0, $desired_width, $desired_height, $width, $height);
if (imagejpeg($virtual_image, $dest)) {
return true;
} else {
return false;
}
}
BEFORECode: [Select]function profile_picture_upload($user_id = ''){
THEN ADDCode: [Select]profile_picture_thumb($upload_path . 'profile'.$user_id.$ext, $upload_path . 'profile'.$user_id.$ext, $maxwidth);
AFTERCode: [Select]if($result==0) {
$conn->osc_dbExec("INSERT INTO %st_profile_picture (user_id, pic_ext) VALUES ('%d', '%s')", DB_TABLE_PREFIX, $user_id, $ext);
}
else {
$conn->osc_dbExec("UPDATE %st_profile_picture SET pic_ext = '%s' WHERE user_id = '%d' ", DB_TABLE_PREFIX, $ext, $user_id);
}In all case, DO BACKUP before you change anything in your files
Hi!
Gravatar, just as I wrote, what I did notice, is using the same CDN, which is used by Wordpress: i1.wp.com
I have been using Wordpress CMS for a few years now. I know the Jetpack plugin Photon, which use the same CDN address to host pictures. See by yourself: https://jetpack.com/support/photon/
Since the OSClass CMS is a modification of Wordpress CMS, (more less), perhaps someone (not me - I am a lamer), could and would adapt the Photon to OSClass?
What do you think Liath?
Hi all,
I took the liberty of upgrading this cool plugin to a little higher level 8)
Added:
- Multi-Language based on POT files
- Functionality that keeps your system CLEAN when either Admin deletes a user OR if the user deletes his/her profile picture / account so no more files are left behind on your filesystem. Also your DB is kept clean meaning no FK issues when trying to remove a user through Admin due to FK issue in some table in your DB.
Maybe some fixes I can't remember but be aware, this plugin is used in my Boxer theme so you might want to make some css changes or if you are replacing your older version make sure you can simply copy the old css in the new version. ;)
NO GUARANTEES, you use this at own risk so make sure you have a backup of your system and please do some testing!
I tested myself ofcourse and I did not find any errors (anymore) but that is on my system.
All credits go to Trains for delivering this nifty plugin, don't go bothering him about this forked version.
Questions about this plugin will only be answered in this forum thread.
Have fun,
Eric
Can be on public profile file of your theme some condition if user is logged to see the picture profile? You need check this.
Regards
<?php echo '<img src="'.osc_base_url(true) . 'oc-content/plugins/profile_picture/images/profile'.$user['pk_i_id'].".jpg".".png".".gif".'" .width="150px". height="150px" />' . ' <a href="user/profile/'.$user['pk_i_id'].'">'. $user['s_name'].'</a>' . '<br /> ';?>
result= picture not show<?php
/*
* Osclass – software for creating and publishing online classified
* advertising platforms
*
* Copyright (C) 2014 OSCLASS
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// meta tag robots
osc_add_hook('header','osclasswizards_nofollow_construct');
osclasswizards_add_body_class('page');
osc_current_web_theme_path('header.php') ;
?>
<div class="title">
<h1><?php echo osc_static_page_title(); ?></h1>
</div>
<div>
<?php $user = User::newInstance()->listAll(); ?>
<?php if (osc_total_users()>0) { ?>
<table border="1" style="width:100%">
<tr style="border:thin; border-color:#999; background-color:#CCC;">
<th>Company</th>
<th>Phone</th>
<th>Location</th>
<th>Register</th>
</tr>
<?php foreach ($user as $u) { ?>
<?php if($u["b_company"]==1) {?>
<tr>
<th>
<?php echo '<img src="'.osc_base_url(true) . 'oc-content/plugins/profile_picture/images/profile'.$user['pk_i_id'].".jpg".".png".".gif".'" .width="150px". height="150px" />' . ' <a href="user/profile/'.$user['pk_i_id'].'">'. $user['s_name'].'</a>' . '<br /> ';?>
<a href="<?php echo osc_base_url(true) . '?page=user&action=pub_profile&id='.$u['pk_i_id']; ?>" >
<?php echo $u['s_name']; ?>
</a>
</th>
<th><?php echo $u['s_phone_mobile'] ;?></th>
<th><?php echo $u['s_country'] ;?></th>
<th><?php echo $u['dt_reg_date'] ;?></th>
</tr>
<?php } ?>
<?php } ?>
</table><br>
<table border="1" style="width:100%">
<tr style="border:thin; border-color:#999; background-color:#CCC;">
<th>User</th>
<th>Phone</th>
<th>Location</th>
<th>Register</th>
</tr>
<?php foreach ($user as $u) { ?>
<?php if($u["b_company"]==0) {?>
<tr>
<th>
<?php echo '<img src="'.osc_base_url(true) . 'oc-content/plugins/profile_picture/images/profile'.$user['pk_i_id'].".jpg".".png".".gif".'" .width="150px". height="150px" />' . ' <a href="user/profile/'.$user['pk_i_id'].'">'. $user['s_name'].'</a>' . '<br /> ';?>
<a href="<?php echo osc_base_url(true) . '?page=user&action=pub_profile&id='.$u['pk_i_id']; ?>" >
<?php echo $u['s_name']; ?>
</a>
</th>
<th><?php echo $u['s_phone_mobile'] ;?></th>
<th><?php echo $u['s_country'] ;?></th>
<th><?php echo $u['dt_reg_date'] ;?></th>
</tr>
<?php } ?>
<?php } ?>
</table>
<?php } ?>
</div>
<?php osc_current_web_theme_path('footer.php') ; ?>
I have managed to solve the problem, I looked at the other page that looked correctly and the only difference is that they had the following code:
<?php View::newInstance()->_exportVariableToView('user', $user_keep); ?>
Hi Javier, How did you handle this? can you help me with this? :/
:-)