Jump to content

Nathan Explosion

Friends
  • Posts

    6,982
  • Joined

  • Days Won

    127

Community Answers

  1. Nathan Explosion's post in Display the button Reject cookies was marked as the answer   
    You have to populate that field with the tag for cookies.

  2. Nathan Explosion's post in Display List of one member group was marked as the answer   
    https://invisioncommunity.com/search/?&type=core_members&joinedDate=any&group[5]=1
    Change the 5 to the ID of the group.
    Found via Member Search on https://invisioncommunity.com/search/
  3. Nathan Explosion's post in IPS included block template inconsistencies was marked as the answer   
    Or edit the template in the ACP... at <APP> -> Front -> Widgets
    Upcoming Events = Calendar -> Front -> Widgets -> upcomingEvents
    Members = Core -> Front -> Widgets -> members (note that "Today's Birthdays" is the title you gave that block, not the actual name of the block)
     
  4. Nathan Explosion's post in Apostrophe in user name was marked as the answer   
    Easy resolution - add the character:

  5. Nathan Explosion's post in Added Application Update was marked as the answer   
  6. Nathan Explosion's post in Rebuild/Refresh Search Results was marked as the answer   
  7. Nathan Explosion's post in Error searching user by e-mail (Cloud) was marked as the answer   
    That was patched a few weeks ago - check for patches on your Support page in the ACP. If you have none available then it may be a reoccurrence of the issue.
  8. Nathan Explosion's post in Anyway to move Comments was marked as the answer   
  9. Nathan Explosion's post in Sign-ins on iPad OS (v16.4.1) are reported as being on Macinstosh instead of iPad was marked as the answer   
    And the true cause is the Safari setting "Request Desktop Website" is on by default. Toggle that off, and the user agent is now iPad.
    Go Apple!!
  10. Nathan Explosion's post in How to add a forum longer description was marked as the answer   
    The first image is the forum description.
    The second image is description, plus the forum's rules:

  11. Nathan Explosion's post in Google indexing 18 older threads with the title and username of a new topic (only 8 hours old) was marked as the answer   
    Because at the time, that topic probably existed in the 'Recent Topics' block you have on the pages...therefore the phrase you are searching for is on those topics when they were last indexed.
     
  12. Nathan Explosion's post in CKE Editor was marked as the answer   
    By clicking the big button?

  13. Nathan Explosion's post in Badge Icons not displaying on posts was marked as the answer   
    Here's your starter...
    Edit the following template in your theme:
    core -> front -> global ->commentRecognized
    Add the following at the start of the template:
    {{if($comment->recognized->badge)}} {{$badge = \IPS\core\Achievements\Badge::load($comment->recognized->badge );}} {{endif}} Then add this where you want the badge displayed:
    {{if ISSET($badge)}} {$badge->html()|raw} {{endif}} That will give you a full size badge - experiment with the following to change the size....range is 1 (small) to 8 (large)
    {{if ISSET($badge)}} {$badge->html('ipsFlex-flex:00 ipsDimension:4', FALSE, TRUE)|raw} {{endif}}  

  14. Nathan Explosion's post in Not getting notification email for new registrations was marked as the answer   
    Click that bell icon in the ACP's header?
  15. Nathan Explosion's post in REST & OATH missing was marked as the answer   
    Click on API.
  16. Nathan Explosion's post in How to allow all file types in Pages media uploads? was marked as the answer   
    See how the attached works for you - single setting, type extension, enter a comma if multiples, save.
    if it works OK, I'll bundle it into this:
     
    (NE) Additional Pages media types 1.0.0.xml
  17. Nathan Explosion's post in Centering logo in e-mail wrapper makes other images break their containers. was marked as the answer   
    Instead of trying to wrap the image in a div, just add this:
    text-align: center; ...to the style of the container the image is already in (a few lines above the <img.... line)
    <td dir='{dir}' valign='middle' style="font-family: 'Helvetica Neue', helvetica, sans-serif; font-size: 30px; font-weight: 300; color: #262e33; line-height: 48px; padding-left: 10px;">  
  18. Nathan Explosion's post in Unhiding a post was marked as the answer   
    This is assuming you have hidden it, which means it appears as red in a topic...
    Read the post Click the indicated item This is assuming you haven't actually hidden it, and instead have deleted it...
    Go to /modcp/deleted/ on your site (ie...if your site is domain.com then go to domain.com/modcp/deleted/) Find the post You can then select it and undelete it. Failing the above...no idea. Explain more about what you have actually done to hide the post. And if you mean topic, then say so as the location to unhide a hidden topic is different to what I am suggesting you do.
     
  19. Nathan Explosion's post in Push notifications...good idea, however..... was marked as the answer   
    Step 1:
    Configure the manifest correctly.
    Step 2:
    User adds the app after that has been done.
    Step 3:
    Access the app, enable the notifications.
    Start at the start...
    Show your manifest configuration.
  20. Nathan Explosion's post in How does a restricted administrator view the Moderator Activity Page? was marked as the answer   
    Here's the cause of the original problem:
    public function execute(){ \IPS\Dispatcher::i()->checkAcpPermission( 'moderators_manage' ); parent::execute(); } In 4.6.12.1, that's the permission check for the controller you are accessing - it's not moderatorstats_manage, therefore it isn't going to be using the setting you are using. That is fixed in the 4.7.x codeline at some point.
    If you want a QF for it, and are self-hosted, then just edit the relevant file (/applications/core/modules/admin/stats/moderators.php) and change moderators_manage to moderatorstats_manage
    The language string issue will be sorted if and when you upgrade.
  21. Nathan Explosion's post in Opposite to data-pagemodule= was marked as the answer   
    If anyone ever needs it...
    Every app except Forums.
    body:not([data-pageModule="forums"]){ }  
  22. Nathan Explosion's post in Issue: On a posting in one of our forums in 2015, the embedded image has disappeared was marked as the answer   
    This one? If so, simply change the domain element of the link (plus a little modification to https://)
    http://cpica.invisionconnect.com/uploads/gallery/category_35/gallery_1_35_12233.jpg
    to

    https://cpica.ca/uploads/gallery/category_35/gallery_1_35_12233.jpg
     
  23. Nathan Explosion's post in Pages Component missing from ACP was marked as the answer   
    Self-hosted?
    Cloud? Wait for Invision to assist here.
     
  24. Nathan Explosion's post in One page of my forum is broken: can't edit, can't reply, can't see last post? was marked as the answer   
    Try going direct to the edit page:
    https://www.logicprohelp.com/forums/topic/118846-logic-pro-x-compressor-circuit-type-cheat-sheet/?do=editComment&comment=800702
    If it works, yay.
    If it doesn't then you wait.
     
  25. Nathan Explosion's post in Can restrict access to www.mydomain.com/online page? was marked as the answer   
×
×
  • Create New...