61
mawi27
Re: Anonymous users cannot see content!
  • 2006/1/27 7:39

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


Did you set Module Access rights for anonymus user to access the news module in admin - user - groups ?
Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



62
mawi27
Re: Show block
  • 2006/1/26 13:00

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


you can go to the admin section and add your blocks again.
use: www.yourdomain.com/admin.php --> (if you are requested to login, do this and then go to xoopsurl/admin.php again.

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



63
mawi27
Re: Customise Members List
  • 2006/1/26 10:04

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


Quote:

Shine wrote:
xoops 2.0.13.x

I am also puzzled in how I can customize this module.
What I am trying to achieve is that I only want to show members listed within a specific membergroup.
If I only want to show members listed within a standard 'registered users' group but not within another created membersgroup how can this be done?
Is there somehow a special smarty-membergroup-tag for this like there is for : <{if $xoops_isadmin == true}> or <{if $xoops_isuser}> ?

A bit of help would be appreciated.

Grtz., Shine


Hi shine,
there is one variable <{$xoops_userid}> so maybe there is one <{$xoops_groupid}> as well?
I am no pro with the smarty variables.

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



64
mawi27
Re: Customise Members List
  • 2006/1/26 9:27

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


You're very welcome!

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



65
mawi27
Re: Customise Members List
  • 2006/1/26 8:19

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


Seems to be ok for me.
When u upload the file, you have to make sure, that your new version will be used.
Go to the menu administration and update the xoopsmember module.
Then it should work fine.

I'm sorry, but i can't help you with the user profile - i do not quite understand the profiles module myself

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



66
mawi27
Re: buttons!
  • 2006/1/25 14:02

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


sorry, but i don't get your point.

in multimenu you make a new link. call it YOURCONTENT, set it as Main Link (no submenu needed) link it to your contente e.g. modules/news and tell it to show in the target self

Then you create a block YOURBLOCKNAME as multimenuX visible e.g. on all pages in the left collumn, set the user rights and there u go.

You then see the menu with the link to your content. Press on it and your content shows up.
If you have more links,set them all as Main links and all show up at once -> no additional clicks needed.

Works fine on my page.

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



67
mawi27
Re: buttons!
  • 2006/1/25 12:22

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


Hi hotrock,

what exactly do you want to show?

If you want to customize your main menu, take a look at the multimenu module available in the mod repository.

To show content of a block, simply add the block to the page, where you want it to show up

Maybe this is some help to you, otherwise pls give some more information what you really want to do.

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



68
mawi27
Re: xoops variables
  • 2006/1/25 12:17

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


bump
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



69
mawi27
Re: Customise Members List
  • 2006/1/24 18:38

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


Hi nikki,

there is no admin section for this module.

You have to customize the file xoopsmembers_searchresults.html in the xoopsmembers/template directory.

In this file you have the table header line and another line for the user data. You have to keep them synchronized.

<tr>
    <
th align="center"><{$lang_username}></th>
    <
th align="center"><{$lang_realname}></th>
    <
th align="center"><{$lang_email}></th>
    <
th align="center"><{$lang_privmsg}></th>
    <
th align="center"><{$lang_url}></th>
    <
th align="center"><{$lang_regdate}></th>
    <{if 
$is_admin == true}>
                <
th align="center"><{$lang_lastlogin}></th>
                <
th align="center"><{$lang_posts}></th>
                <
th align="center"><{$lang_admin}></th>
    <{/if}>
  </
tr>
  <{
section name=i loop=$users}>
  <
tr valign="middle">
    <
td align="center" class="odd"><{$users[i].avatar}><br /><a href="<{$xoops_url}>/userinfo.php?uid=<{$users[i].id}>"><{$users[i].name}></a><br /><{$users[i].rankimg}><br /><{$users[i].ranktext}></td>
    <
td class="even"><{$users[i].realname}></td>
    <
td align="center" class="odd"><{$users[i].email}></td>
    <
td class="even" align="center"><{$users[i].pmlink}></td>
    <
td class="odd" align="center"><{$users[i].website}></td>
    <
td class="even" align="center"><{$users[i].registerdate}></td>
    <{if 
$is_admin == true}>
                <
td class="odd" align="center"><{$users[i].lastlogin}></td>
                <
td class="even" align="center"><{$users[i].posts}></td>
                <
td class="odd" align="center"><{$users[i].adminlink}></td>
    <{/if}>
  </
tr>

As you can see, my file is already customized. Now this is fairly simple:
Every row you want only the admin to see, simply move into the <{if ... <{/if}> statement.

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more



70
mawi27
Re: How do I put a caption under images in XcGallery?
  • 2006/1/24 13:43

  • mawi27

  • Friend of XOOPS

  • Posts: 103

  • Since: 2006/1/1 1


I have the same Problem.

When uploading the image there is no field caption to write anything into it.
Result: Database field caption is empty for all my images.

The static-Image block template is:
<{foreach item=pic from=$block.pics}>
 <
td align="center" class="odd" style="padding: 10px;vertical-align: middle;">
 <
a href="<{$xoops_url}>/modules/xcgal/<{$pic.link_tgt}>"><{$pic.image}></a><br />
 <{
$pic.caption}>
 </
td>
<{/foreach}>


I changed $pic.caption to $pic.title but nothing happened.

So in the next step i filled the db field caption for the images but the smarty debug console shows:

{$pic} Array (6)
pos => -27
image => img src="http://test.mydomain.de/...
caption => empty
pid => 27
link_tgt => displayimage.php?pid=27&album=ran...
i => 1


Very sad, since xcgal is a good album module.
Xoops: 2.2.3, Xcgal: 2.0.2

Marco
--
Match Dart!
Darts Ranking, News, Videos, Forum and more




TopTop
« 1 ... 4 5 6 (7) 8 9 10 »



Login

Who's Online

147 user(s) are online (77 user(s) are browsing Support Forums)


Members: 0


Guests: 147


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits