Jump to content
WebFlake
  • 0

Several Doubts


RehGuedes | devlong | IV?️

Question

1 - Does anyone know how to create this? I want to use this style in the default theme 

Sem_t_tulo.png

I used this one to copy (https://webflake.sx/files/file/4217-ortem/)

2 - How to limit the member to be able to enter only 1 club. If the member already owns or has already entered a club, he can not join other clubs

2.1 -How to add the club in the pane post and profile, same as iAwars

3 - How to create a page for iAwards, do not display the category menu, showing only all awards

Ex: Sem_t_tulo.png ( Do not show this part )

Ex: Sem_t_tulo1.png ( Show this page, without category, and without that category link above )

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
23 hours ago, RehGuedes said:

2.1 -How to add the club in the pane post and profile, same as iAwars

AdminCP >> Skin Theme >> Your Theme, Edit Html & Css >> Search for Postcontainer in Html tab, and search in for:

                {template="customFieldsDisplay" group="global" app="core" params="$comment->author()"}
            {{endif}}

Add below

            {{$clubs = \IPS\Member\Club::clubs( $comment->author(), NULL, 'name', TRUE );}}
            {{foreach $clubs as $club}}
          <span class='Luck'>
			  <center>
				{template="clubIcon" group="clubs" app="core" params="$club, 'tiny', 'ipsPos_center'"}
			  </center>
          </span>
            {{endforeach}}

now in CSS tab, add in custom.css

.Luck {
  float: Left;
  padding: 0px 0px 0px 3px;
  margin: 3px;
  {


Save and done. 

the other requests require many editions of css and html, you advance as soon as more we help, there are certain things that is tiring to be done and so little be done for free, maybe someone does, but because it is necessary many editions can be not.

Edited by Comendator
  • Upvote 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...