|
|
Re:CB Gallery Module - Parameters & Features
|
|
Date: 2007/02/15 01:53
|
By: xaviercabanne
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 2 |   | |
|
Hi !
I've the same "Three lines under" problem. I just take a quick look in the html rendering and find the problem : a few BR tags in the DIV tags. You can find them in the PHP file too.
My question is for Nick : I imagine that you includes those for a good reason. Can we delete them or not ?
Thank you for this one, and a big THANKS A LOT for what the team done with CB. Great job !
CU
Xav'
Post edited by: xaviercabanne, at: 2007/02/15 01:56
|
|
The administrator has disabled public write access. |
|
|
|
Re:CB Gallery Module - Parameters & Features
|
|
Date: 2007/03/21 20:15
|
By: tboard
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 1 |   | |
|
OK.. im havving problems....
I GET
No Items published in this profile gallery
no matter what i do.. but it was working before!! PLS help
|
|
The administrator has disabled public write access. |
|
|
|
Re:CB Gallery Module - Parameters & Features
|
|
Date: 2007/05/17 01:00
|
By: juuk
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 12 |   | |
|
The default value of profile gallery is 1024 bytes or kilobytes?
If it is in bytes, I'd like to change "Kbytes" to "bytes" in in the page where a user can create a short greeting and decides which group can acces the profile gallery, and gallery submission page.
Many thanks. I am on: Joomla 1.0.11 CB 1.0.2 (CB ProfileGallery 1.0 RC2, CB ProfileBook 1.0, Last Visitors 0.2.9, CB Captcha 1.0) EventList 0.8.6 FacileForm 1.4.7 Joomlaboard 1.1.3 uddeIM 0.5 zOOm 2.5.1 (RC4wk8)
|
|
The administrator has disabled public write access. |
|
|
|
Re:CB Gallery Module - Parameters & Features
|
|
Date: 2007/08/02 09:29
|
By: normdouglas
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 1 |   | |
|
I've installed this via the CB plugin management, but I can't find where to set these so-called parameters.
Can you help?
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:CB Gallery Module - Parameters & Features
|
|
Date: 2007/08/19 01:49
|
By: tuppka
|
Status:
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 8 |   | |
|
Go to Modules>Site Modules>mod_cbgallery.
You'll find the parameter settings there.
Post edited by: tuppka, at: 2007/08/19 18:54
|
|
The administrator has disabled public write access. |
|
|
|
|
Re:CB Gallery Module - Parameters & Features
|
|
Date: 2007/08/23 15:59
|
By: Börni
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 5 |   | |
|
I have modified the getDisplayTab function on line 65 in cb.profilegallery.php to show the users who have images waiting for approve.
| Code: | function getDisplayTab($tab,$user,$ui) {
global $my,$mainframe,$mosConfig_lang, $database;
$this->_getLanguageFile();
$tabparams=$this->_pgGetTabParameters($user);
$htmltext1 = "";
if (!$tabparams["pgmanagementtabenabled"]) return $htmltext1;
// Is user a moderator?
$isModerator=isModerator($my->id);
if (!$isModerator) return $htmltext1;
$query = "SELECT DISTINCT u.id, u.username ";
$query .= "\n FROM #__comprofiler_plug_profilegallery as c, #__users as u";
$query .= "\n WHERE c.pgitemapproved = 0";
$query .= "\n and u.id = c.userid";
$database->setQuery($query);
$rows = $database->loadObjectList();
if($tab->description != null) {
$htmltext1 .= "\t\t<div class=\"tab_Description\">";
$htmltext1 .= unHtmlspecialchars(getLangDefinition($tab->description));
$htmltext1 .= "</div>\n";
$htmltext1 .= "<br />\n";
if (count($rows) > 0) {
foreach($rows as $row) {
$htmltext1 .= '<a href="index.php?option=com_comprofiler&task=userProfile&user='.$row->id.'">'.$row->username.'</a><br />';
}
}
}
return $htmltext1;
}
|
hf ..
|
|
The administrator has disabled public write access. |
|
|