Jump to content

aXenDev

Members
  • Posts

    658
  • Joined

  • Days Won

    6

Reputation Activity

  1. Like
    aXenDev got a reaction from itsravi in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    @Davyc You can combine both codes to make the icons more distinguishable.
    For example:
    nav .ipsNavBar_primary li[data-navext="Forums"] a[href="https://axendev.net/test"]::before {content: "\f015" !important;}  
  2. Thanks
    aXenDev got a reaction from byMarcoX in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    Works on all groups.
  3. Thanks
    aXenDev got a reaction from IPBPowerDev in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    @IPBPowerDev

  4. Thanks
    aXenDev got a reaction from S. Rose in How do I get "Our Picks" up and running?   
  5. Like
    aXenDev reacted to Ryan Ashbrook in Protecting the ACP Controllers   
    Any methods that alter the state of something. So, saving settings (which happens already if you are using \IPS\Helpers\Form), deleting, editing, etc. etc.
    So, for instance, on a delete button you would do:
    array( 'title' => 'delete', 'icon' => 'trash', 'link' => \IPS\Http\Url::internal( "app=myapp&module=mymodule&controller=mycontroller&do=delete" )->csrf(), 'data' => array( 'delete' => '' ) ) Then your delete method would do:
    public function delete() { \IPS\Request::i()->confirmedDelete(); // ... etc ... } For any other method, you would do:
    \IPS\Http\Url::internal( "app=myapp&module=mymodule&controller=mycontroller&do=somethingThatChangesSomething" )->csrf() Then:
    public function somethingThatChangesSomething() { \IPS\Session::i()->csrfCheck(); // ... etc ... } Most of the framework will largely handle this, however you should be mindful. A good example is flagging a member as a spammer in the admin members controller. This does not use a a form, or anything that would automatically apply a CSRF check, however it's an action that alters the state of the site (ban the user, hide their content, etc.). Therefore, it needs a CSRF check to make sure it was an action the administrator actually wanted to do.
  6. Like
    aXenDev got a reaction from PasXal in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    I forgot to add it. The option should come out first in beta 3.
  7. Like
    aXenDev got a reaction from Meddysong in How to change the icon color   
    If you want change text color:
    #elSearch input[type="search"]::placeholder { color: #fff; } If you want change background color and the color of the text being entered:
    #elSearch input[type="search"] { background-color: #fff; color: #fff; }  
  8. Like
    aXenDev got a reaction from Motofumi Suzuki in How to change the icon color   
    If you want change text color:
    #elSearch input[type="search"]::placeholder { color: #fff; } If you want change background color and the color of the text being entered:
    #elSearch input[type="search"] { background-color: #fff; color: #fff; }  
  9. Like
    aXenDev got a reaction from Motofumi Suzuki in How to change the icon color   
    Add to custom.css:
    #elUserNav > li > a { color: #000; }  
  10. Like
    aXenDev got a reaction from Meddysong in How to change the icon color   
    Add to custom.css:
    #elUserNav > li > a { color: #000; }  
  11. Thanks
    aXenDev reacted to Stuart Silvester in Can't login with Facebook   
    We have released a patch for this issue, you can get it in your admin CP by going to Support and selecting "something isn't working"
  12. Sad
    aXenDev got a reaction from rodege5389 in Download Renewals   
    Now you need to have an active license to download and buy products from the marketplace.
  13. Sad
    aXenDev got a reaction from ahc in Download Renewals   
    Now you need to have an active license to download and buy products from the marketplace.
  14. Like
    aXenDev reacted to Adriano Faria in Commerce / Files - Pay what you want   
    Anyone still interested in this?

     

     

     
     

     
    If you are, send a PM so you can pre purchase it and make some tests (and make suggestions) before I release it.
    Thank you. 🙂
  15. Like
    aXenDev got a reaction from Meddysong in Where to find recordRow template ?   
    recordRow is intended templates for pages application.
    Go to AdminCP -> Pages -> PAGE MANAGEMENT -> Templates.
  16. Like
    aXenDev got a reaction from Poseidon2 in Where to find recordRow template ?   
    recordRow is intended templates for pages application.
    Go to AdminCP -> Pages -> PAGE MANAGEMENT -> Templates.
  17. Thanks
    aXenDev got a reaction from RocketStang in How do I get "Our Picks" up and running?   
  18. Like
    aXenDev reacted to Ilya Hoilik in Favicon on this community   
    Really want to see updated high resolution favicon without white border. Current favicon is very ugly.


  19. Like
    aXenDev got a reaction from Rokstah in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    The theme will work on the latest beta version. This is information for you that the theme has been tested in beta 7.
  20. Like
    aXenDev got a reaction from ahc in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    A good idea! The change will appear in beta 2.
  21. Like
    aXenDev got a reaction from CoffeeCake in Reactions in private messages   
    It would make sense only if the reactions didn't add reputation.
    In my opinion, this is a strange concept.
  22. Like
    aXenDev got a reaction from sobrenome in Reactions in private messages   
    It would make sense only if the reactions didn't add reputation.
    In my opinion, this is a strange concept.
  23. Like
    aXenDev got a reaction from PasXal in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    Version 3.0.0 alpha (IPS 4.5) is now available in my production forum!
    https://1shot2kill.pl/
  24. Like
    aXenDev got a reaction from Rokstah in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    All options are in the header tab.
  25. Like
    aXenDev got a reaction from Rokstah in [Dark / Light] Fluent Design Theme Edition - Topic Support   
    The option will be available in version 3.0.0 theme.
×
×
  • Create New...