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, It's css I explain how it works here
  2. You have no ads clicked by users. My application logs clicks and show the stats (see above screenshot).
  3. Hello, Do you mean this? That page displays ads with clicks CSS selector .cPost:nth-child(3n) Position Insert advert after the chosen element(s)
  4. Do you mean https://invisioncommunity.com/files/file/8198-nb41-enhanced-advertisements/? Yes, you can. Maybe I'll add this feature for this plugin in the next version
  5. Hello, No "Reverse" works with forums and mean "Don't show ads in selected forums".
  6. Hello, You can select the forums in which the filters will be displayed
  7. https://invisioncommunity.com/forums/topic/429838-nb41-enhanced-advertisements/?do=findComment&comment=2637329
  8. Hello, Selector .cTopic + .ipsToolList.ipsToolList_horizontal Position Insert advert after the chosen element(s) .ipsToolList.ipsToolList_horizontal.ipsClearfix.ipsSpacer_top.ipsResponsive_hidePhone All you need to know is css. If you are not familiar with css feel free to ask me in the support topic or PM (some customers do it)
  9. Hello, The counters under topic title you can hide via css The counters inside posts you can hide via setting The counters in the topics list you can hide via setting
  10. They use isset for 2nd part (else statement) if ( \is_array( $key ) ) { foreach( $key as $k ) { if ( \in_array( $k, array_keys( $this->words ) ) ) { $return[ $k ] = $this->words[ $k ]; } .......... } .......... } else { if ( isset( $this->words[ $key ] ) ) { return $this->words[ $key ]; } .......... } If I’m not mistaken there was a topic (or bug report) about this. In the previous versions the code looks like if ( is_array( $key ) ) { foreach( $key as $k ) { if ( in_array( $k, array_keys( $this->words ) ) ) { $return[ $k ] = $this->words[ $k ]; } .......... } .......... } else { if ( in_array( $key, array_keys( $this->words ) ) ) { return $this->words[ $key ]; } .......... } So IPS changed ELSE part
  11. Add in Extra condition field {{if isset(\IPS\Output::i()->hiddenElements['nbenhadverts_node_class']) and \IPS\Output::i()->hiddenElements['nbenhadverts_node_class'] instanceof \IPS\forums\Forum and \IPS\Output::i()->hiddenElements['nbenhadverts_node_id'] == 631}} 1 {{endif}}
  12. Hello, Could you show me plugin settings?
  13. Hello, Just confused. Do you want to add a banner on the index page after specific forum? Or do you want to add a banner on the page of specific forum?
  14. Hello, Where do you want display a banner? Location please
  15. Hello, See The application has a file /applications/radtags/data/extensions.json which contain { "core": { "ModeratorPermissions": { "ModeratorPermissions": "IPS\\radtags\\extensions\\core\\ModeratorPermissions\\ModeratorPermissions" } } }
  16. \IPS\Helpers\Form\Text support maxLength \IPS\Helpers\Form\TextArea support maxLength \IPS\Helpers\Form\Editor support maxLength \IPS\Helpers\Form\Translatable can be text or textarea or editor. So should support maxLength
  17. No. In the next. I'll check instagram issue and will upload new version
×
×
  • Create New...