Jump to content

David N.

Clients
  • Posts

    1,353
  • Joined

  • Last visited

  • Days Won

    2

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Forums

Events

Store

Gallery

Posts posted by David N.

  1. Under System > Support > Get Support, I see a yellow recommendation in the "Logs" box saying "Repeated log entries". When I click it I see this: 
     
    Reoccurring system log entries may be indicative of a problem that should be addressed. A summary of the top reoccurring recent log entries are shown below. Review the system log for further details.
     
    • Message
      Count
    • 360
    • Error: Call to a member function rfc3339() on null (0) #0 /home/logicpro/public_html/forum/applications/core/extensions/core/MemberSync/System.php(410): IPS\_Member->apiOutput() #1 /home/logicpro/public_html/forum/system/Member/Member.php(4029): IPS\core\extensions\core\MemberSync\_System->onProfileUpdate() #2 /home/logicpro/public_html/forum/system/Member/Member.php(417): IPS\_Member->memberSync() #3 /home/logicpro/public_html/forum/system/DateTime/DateTime.php(61): IPS\_Member->save() #4 /home/logicpro/public_html/forum/system/Member/Member.php(1140): IPS\_DateTime::ts() #5 /home/logicpro/public_html/forum/system/Patterns/ActiveRecord.php(335): IPS\_Member->get_joined() #6 /home/logicpro/public_html/forum/system/Session/Session.php(294): IPS\Patterns\_ActiveRecord->__get() #7 /home/logicpro/public_html/forum/system/Session/Session.php(175): IPS\_Session->regenerateCsrfKey() #8 /home/logicpro/public_html/forum/system/Session/Session.php(97): IPS\_Session->init() #9 /home/logicpro/public_html/forum/system/Theme/Theme.php(412): IPS\_Session::i() #10 /home/logicpro/public_html/forum/system/Theme/Theme.php(307): IPS\_Theme::currentThemeId() #11 /home/logicpro/public_html/forum/system/Dispatcher/Standard.php(54): IPS\_Theme::i() #12 /home/logicpro/public_html/forum/system/Dispatcher/Front.php(823): IPS\Dispatcher\_Standard::baseCss() #13 /home/logicpro/public_html/forum/system/Dispatcher/Front.php(79): IPS\Dispatcher\_Front::baseCss() #14 /home/logicpro/public_html/forum/system/Dispatcher/Dispatcher.php(110): IPS\Dispatcher\_Front->init() #15 /home/logicpro/public_html/forum/index.php(13): IPS\_Dispatcher::i() #16 {main}
  2. 1 minute ago, teraßyte said:

    I actually just submitted a quick plugin to disable the topic preview. It's pending approval here in the IPS Marketplace and already available on my site:

    The plugin has only a setting to exclude certain forums, not themes though. Maybe I'll consider it for a future version.

    Wow you're fast! That's great. 

    I think if you're making a plug-in then ideally (if possible) it should have a simple switch for users to turn the preview on or off in their account settings. That way one doesn't have to create two themes just to change that setting. 

  3. 1 hour ago, teraßyte said:

    If you want to edit the template thought just find this code in "forums > front > forums > topicRow" (line ~113):

    <a href='{$row->url( "getPrefComment" )}' class='' title='{{if $row->mapped('title')}}{$row->mapped('title')}{{else}}{lang="content_deleted"}{{endif}} {{if $row->canEdit()}}{lang="click_hold_edit"}{{endif}}' {{if $row->tableHoverUrl and $row->canView()}} data-ipsHover data-ipsHover-target='{$row->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5'{{endif}}{{if $row->canEdit()}} data-role="editableTitle"{{endif}}>

    and replace it with (basically remove the data-ipsHover attributes):

    <a href='{$row->url( "getPrefComment" )}' class='' title='{{if $row->mapped('title')}}{$row->mapped('title')}{{else}}{lang="content_deleted"}{{endif}} {{if $row->canEdit()}}{lang="click_hold_edit"}{{endif}}' {{if $row->canEdit()}} data-role="editableTitle"{{endif}}>

    That worked great. Thanks again. 

  4. 35 minutes ago, teraßyte said:

    No, there's no specific setting to disable it. You can either edit it out of the template or have a plugin made to disable it. Going the plugin way will keep your templates unedited and any future updates to it will automatically apply, which is what I usually suggest.

     

    If you want to edit the template thought just find this code in "forums > front > forums > topicRow" (line ~113):

    <a href='{$row->url( "getPrefComment" )}' class='' title='{{if $row->mapped('title')}}{$row->mapped('title')}{{else}}{lang="content_deleted"}{{endif}} {{if $row->canEdit()}}{lang="click_hold_edit"}{{endif}}' {{if $row->tableHoverUrl and $row->canView()}} data-ipsHover data-ipsHover-target='{$row->url()->setQueryString('preview', 1)}' data-ipsHover-timeout='1.5'{{endif}}{{if $row->canEdit()}} data-role="editableTitle"{{endif}}>

    and replace it with (basically remove the data-ipsHover attributes):

    <a href='{$row->url( "getPrefComment" )}' class='' title='{{if $row->mapped('title')}}{$row->mapped('title')}{{else}}{lang="content_deleted"}{{endif}} {{if $row->canEdit()}}{lang="click_hold_edit"}{{endif}}' {{if $row->canEdit()}} data-role="editableTitle"{{endif}}>

     

    Great, thanks a lot for the detailed answer, I appreciate it!

  5. 30 minutes ago, Adriano Faria said:

    You can also probably hide via custom CSS ( li cCreate ).

    Thank you (and thanks to @Nathan Explosion). Because there's also a separator right after that "Create" link that I also wanted to hide I ended up using this: 

    /* Hide "Create" link next to bell and letter icons in the header */
    li#cCreate li#cCreate+li.elUserNav_sep {
        display:none;
    }

     

  6. 20 minutes ago, Marc Stridgen said:

    There is no way in which to remove that without customisation to your theme. To note however, this is not just for events. Its for the creation of any content item, including topics

    Thank you. I'll customize the CSS then, no problem, just wanted to make sure that was the way to handle it. Since there's a big "Start new topic" button a few pixels below I feel that link is redundant for my site.

    1 minute ago, Marc Stridgen said:

    You would go to System>Site Featureds>Applications and click "Enabled" next to the calendar application if you wish to just disable that application

    Ok I don't know how I didn't see it, I was just on that page trying everything. 🤦‍♂️

  7. I understand.

    My concern is for users who are less comfortable with computers in general (we have a few of them), who may not even know anything about dark mode and that would be very surprised by the new look and think they have done something wrong and not recognize the website. 

  8. 1 minute ago, TAMAN said:

    if you enable dark mode then your website will also load in dark mode color scheme 🙂 

    Thank you for your answer!

    However my concern is that even if a user has dark mode enabled on their OS, they may be used to light mode on my website and I wouldn't want them to suddenly see a dark mode that they're not used to. 

    So anyway if you have a setting to disable that behavior and keep light mode by default for all in your next version, I'll wait for that!

    Thanks. 

  9. I've noticed this on my board, and now I just experienced it on this board as well. 

    I just received a Push notification (Chrome browser) "Your topic was solved!". Clicking it loads the following "Sorry — Page not found" page (the preview here looks correct but if you click the topic title or the arrow icon you'll see what I mean). 

     

    By comparison, clicking the same notification in my notification pop-up menu on this site loads the correct page:

     

×
×
  • Create New...