Jump to content

Nathan Explosion

Clients
  • Posts

    7,150
  • Joined

  • Days Won

    129

Community Answers

  1. Nathan Explosion's post in 4.6 Announcement feature. Where it is in the admin panel? was marked as the answer   
    Because it's in the Moderator CP on the front-end.
  2. Nathan Explosion's post in 4.6 Announcement feature. Where it is in the admin panel? was marked as the answer   
    Because it's in the Moderator CP on the front-end.
  3. Nathan Explosion's post in Articles category was marked as the answer   
    ?
    You want to be able to categorise the Articles database?
    Go for it...

     
     


     
  4. Nathan Explosion's post in Relative dates after update.. was marked as the answer   
    It's in the 4.6.2 notes, which is the first proper public release and is the version where the option was added.
    To answer "where is the option?" - it's in General Configuration in the ACP:
     

  5. Nathan Explosion's post in [THIS SITE] CKEDITOR shenanigans was marked as the answer   
    No.
    No.
  6. Nathan Explosion's post in Source editor button unavailable was marked as the answer   
  7. Nathan Explosion's post in Recalcuating User Post Count was marked as the answer   
    Go to any user account in the ACP and at the top of the screen...

    Then...

  8. Nathan Explosion's post in Last Visited removed? was marked as the answer   
    Anonymously logged in...
  9. Nathan Explosion's post in How does auto-save actually work? was marked as the answer   
    It saves to the local storage in the browser (not a cookie)
  10. Nathan Explosion's post in How does auto-save actually work? was marked as the answer   
    It saves to the local storage in the browser (not a cookie)
  11. Nathan Explosion's post in Tags: Show as Categories was marked as the answer   
    By any chance, are you using an app/plugin that makes changes to the tagging functionality? Reason for asking - on a quick first look, the description for that field doesn't exist in the default language pack.
  12. Nathan Explosion's post in Disable "Your registration is complete!" E-Mail was marked as the answer   
    (NE) Disable sending 'Registration completed' email.xml
  13. Nathan Explosion's post in Is there a setting that removes followers over time? was marked as the answer   
    Are you checking against a CIC site, by any chance? The 'sidebar' for that button is enclosed in:
    if( !\IPS\CIC ) { }
  14. Nathan Explosion's post in Possible to permanently toggle forum categories? was marked as the answer   
    Edit forums -> front -> index -> index
    Find:
    <li data-categoryID='{$category->_id}' class='cForumRow ipsBox ipsSpacer_bottom ipsResponsive_pull'> Change it to:
    <li data-categoryID='{$category->_id}' class='cForumRow ipsBox ipsSpacer_bottom ipsResponsive_pull cForumRow_hidden' data-hidden="true">  
  15. Nathan Explosion's post in Default file version number was marked as the answer   
    Give this a go - tested with a field called 'file_version' but untested on Downloads as I don't use it. However, it should do the job.
     
    (NE) Downloads - no default version number.xml
  16. Nathan Explosion's post in IPS Support Request - Not Working? was marked as the answer   
    Working as expected for me - click the 'Create Request' button brings up the 'Start a conversation' dialog on the right hand side:

  17. Nathan Explosion's post in Quick question about Achievements and Ranks was marked as the answer   
  18. Nathan Explosion's post in Cover photo template was marked as the answer   
    core -> front -> forms -> popupTemplate
    Right after the opening "<form..." line, add:
    {{if $id == "coverPhoto"}} YOUR STUFF {{endif}}  
  19. Nathan Explosion's post in I have upgraded to IPB 4.6.2 and need help on custom script was marked as the answer   
    Threw it on a test site...
    After this:
    require 'init.php'; Add this:
    \IPS\Dispatcher\External::i(); That should sort it - if the offer of payment stands, my beer fund will be very happy 😄
  20. Nathan Explosion's post in Current ranks – and – Reputation was marked as the answer   
    Or you could run the provided rebuild tool, to retroactively apply the new rules, prior to reopening your site post-upgrade.
     
  21. Nathan Explosion's post in Forum Upgrade from IPB3 to lates, reactions broken was marked as the answer   
    Have you tried clicking on the delete icon yet? Because it gives you an option to perform...

     
  22. Nathan Explosion's post in CMS (Pages) - Sidebar block separated from articles was marked as the answer   
    I'm not confused - I'm clarifying your request to move from the general ("the blocks") to the specific ("the Recent Status Update block"), and your response confirms that it is the default blocks that you are asking about.
    The 'fix' is to use custom blocks instead, as follows (note: I am not providing what you put in to every field, I am providing the specific things that need to be done...the rest is up to you)
    ACP Pages -> Blocks -> Create Block In the second field ('Plugin') select the block you want to use ('Recent Status Updates') Give it a name (example: myBlock) Save this Pages -> Blocks -> Create Block This time, choose 'Custom' -> 'Manual HTML' On the first tab, name your custom block On the 'Content' tab, insert the code below On the same tab, DO NOT enable 'Cache this block' Save the new custom block Now, on the front-end you put that custom block in place, instead of the 'Recent Status Updates' block {{if \IPS\Request::i()->controller==='page' AND !isset(\IPS\Request::i()->id)}} {block="myBlock"} {{endif}} Why do it this way? The 'Recent Status Updates' block is cached, so adding the {{if....}} statement in its content will end up with strange caching results.
    Result (there may be some finesse needed, but there is your starting point):
     

     

     
  23. Nathan Explosion's post in Zapier Community Enchantments was marked as the answer   
    No Zapier.
  24. Nathan Explosion's post in Event disappears when started was marked as the answer   
    This is the line that is used later on in the query to retrieve the events:
    $_today = new \IPS\calendar\Date( "now", \IPS\Member::loggedIn()->timezone ? new \DateTimeZone( \IPS\Member::loggedIn()->timezone ) : NULL ); Changing the "now" to "today" and you'll get those already started events to appear - but that's a direct code edit.
    I think I might be able to do a plugin to help you with this though...gimme a few minutes to check.
    Here you go - try this out:
     
     
    (NE) Upcoming Events - show recently started events.xml
  25. Nathan Explosion's post in Where are Announcement Stored? was marked as the answer   
    Well, doing that is likely to end up causing a problem with trying to do it the correct way...
    Go to your Moderator CP, and click Announcements
×
×
  • Create New...