Jump to content

newbie LAC

Members
  • Posts

    5,244
  • Joined

  • Days Won

    40

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by newbie LAC

  1. Hello, SELECT core_members.name, core_pfields_content.field_15 AS mobile FROM core_clubs_memberships LEFT JOIN core_members ON core_members.member_id=core_clubs_memberships.member_id LEFT JOIN core_pfields_content ON core_pfields_content.member_id=core_members.member_id WHERE core_clubs_memberships.club_id=7;
  2. {{if !\IPS\Session::i()->userAgent->spider}}1{{endif}}
  3. Hello, You can check the bots using \IPS\Session::i()->userAgent->spider Example {{if \IPS\Session::i()->userAgent->spider}} Show code for bots {{else}} Show code for others {{endif}}
  4. It's a bug related to language strings
  5. Hello, I'll check it UPD. You should enable Can edit posts/answers?
  6. Depends on what you need 1st query returns results for users which selected "off-road - learn/drive" or "off-road - learn/drive" + others 2st query returns results for users which only selected "off-road - learn/drive"
  7. SELECT email FROM core_members LEFT JOIN core_pfields_content ON core_members.member_id=core_pfields_content.member_id WHERE FIND_IN_SET(4, field_22); or SELECT email FROM core_members LEFT JOIN core_pfields_content ON core_members.member_id=core_pfields_content.member_id WHERE field_22=4;
  8. https://invisioncommunity.com/4guides/suite-applications/pages/core-concepts/blocks-r151/
  9. Hello, Do you mean Pages blocks? If so you can do it
  10. Do you have ftp access? If so open \applications\football\modules\front\main\league.php, find and remove \IPS\Output::i()->error('no_module_permission', '2FB211/5', 403, '');
  11. Hello, Looks like a bug. I'll look into that.
  12. {{if request.app == 'forums' and request.module == 'forums' and request.controller == 'forums' and !isset(\IPS\Output::i()->hiddenElements['nbenhadverts_club_id'])}}1{{endif}}
  13. Not sure what should I do with these data?
  14. Do you have enabled Designer mode? On my localhost (4.4.9.1) the plugin works fine. I can look into your problem if you give me acp access
  15. Are icons/groups displayed on the default theme?
  16. Posts. Open the template core - global - plugins - nbSecGroupIconsPost Find and remove and $icon = $memberGroups[$grOther]->g_icon Find <img src='{file="$icon" extension="core_Theme"}' alt='{expression="$memberGroups[$grOther]->name"}' class='cAuthorGroupIcon'> change to {expression="$memberGroups[$grOther]->formattedName" raw="true"} Profiles. Open the template core - global - plugins - nbSecGroupIconsProfile Find and remove and $icon = $memberGroups[$grOther]->g_icon Find <img src='{file="$icon" extension="core_Theme"}' alt='{expression="$memberGroups[$grOther]->name"}'> change to {expression="$memberGroups[$grOther]->formattedName" raw="true"}
  17. Hello, Have you configure the settings on the 1st tab?
  18. Moderators can only see the signature field \applications\core\modules\front\members\profile.php if ( ( \IPS\Member::loggedIn()->modPermission('can_modify_profiles') OR \IPS\Member::loggedIn()->modPermission('can_unban') ) AND \IPS\Member::loggedIn()->member_id != $this->member->member_id ) { $form->add( new \IPS\Helpers\Form\Editor( 'signature', $this->member->signature, FALSE, array( 'app' => 'core', 'key' => 'Signatures', 'autoSaveKey' => "frontsig-" . $this->member->member_id, 'attachIds' => array( $this->member->member_id ) ) ) ); I think it's a bug because the setting (Enable Signatures?) is respected in many areas E.g. ACP edit profile page Result Result
  19. You can read some docs (ex. https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Selectors, https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Debugging_CSS). You can also ask me in the topic or PM.
×
×
  • Create New...