Jump to content

SeNioR-

Members
  • Posts

    1,146
  • Joined

  • Days Won

    5

SeNioR- last won the day on June 17 2023

SeNioR- had the most liked content!

Profile Information

  • Gender
    Male
  • Interests
    IPS Social Suite 4

Recent Profile Visitors

13,757 profile views
  1. Referring to the topic "Links are not crawlable" and toggleQuote is Creating Errors in PageSpeed, you can also improve the spoiler code. javascript.xml ips.templates.set('core.editor.spoilerHeader', " \ <div class='ipsSpoiler_header ipsSpoiler_closed'>\ <a href='#' data-action='toggleSpoiler'>&nbsp;</a>\ <span>{{#lang}}spoilerClickToReveal{{/lang}}</span>\ </div>\ "); to ips.templates.set('core.editor.spoilerHeader', " \ <div class='ipsSpoiler_header ipsSpoiler_closed'>\ <a href='#' data-action='toggleSpoiler' aria-label='{{#lang}}toggle_spoiler{{/lang}}>&nbsp;</a>\ <span>{{#lang}}spoilerClickToReveal{{/lang}}</span>\ </div>\ "); Temporary JS fix: {{if !\IPS\Member::loggedIn()->member_id and \in_array( \IPS\Dispatcher::i()->controller, array( 'topic', 'page' ) )}} <script async> $(document).ready(function() { $('.ipsQuote_citation a.ipsPos_right').remove(); $('.ipsSpoiler_header a[data-action="toggleSpoiler"]').attr({ 'title': '{lang="topic_approve"}', 'aria-label': '{lang="topic_approve"}'}); $('.ipsQuote a.ipsTruncate_more').attr({ 'title': '{lang="expand"}', 'href': '#', 'onclick': 'return false;', 'rel': 'nofollow'}); }); </script> {{endif}}
  2. There are at least 5 confirmed issues with PHP 8.2 on IPS 4.x. Well, if you want to take a risk, that's up to you.
  3. IPS v4 will not have support for PHP 8.2. The End.
  4. Hi. When I try to share a thread on X, the following message is displayed: System: Android 13 I'm anticipating the question. Yes, I am logged in to X.
  5. Right. I've figured it out. Warnings appear for posts written by guests. Guests do not have a profile page, hence the warnings. Solved 🙂
  6. Hi, similar to this warning: Unrecognised field 'interactionStatistic', only this time it applies to topics. QAPage: Missing field 'url' (in 'mainEntity.author') Missing field 'url' (in 'mainEntity.suggestedAnswer.author') Missing field 'url' (in 'mainEntity.acceptedAnswer.author') Example Code: "@context": "http://schema.org", "@type": "QAPage", "@id": "https://invisioncommunity.com/forums/topic/477609-new-member-email-confirmation-not-sentreceived-dmarc/", "url": "https://invisioncommunity.com/forums/topic/477609-new-member-email-confirmation-not-sentreceived-dmarc/", "mainEntity": { "@type": "Question", "name": "New member email confirmation not sent/received? [DMARC?]", "text": "xx", "dateCreated": "2024-03-22T10:14:26+0100", "author": { "@type": "Person", "name": "VahnPetit" }, "answerCount": 11, "acceptedAnswer": { "@type": "Answer", "text": "xx", "url": "https://invisioncommunity.com/forums/topic/477609-new-member-email-confirmation-not-sentreceived-dmarc/?do=findComment\u0026comment=2966914", "dateCreated": "2024-03-22T11:29:52+0100", "upvoteCount": 0, "author": { "@type": "Person", "name": "opentype", "image": "//content.invisioncic.com/a319035/monthly_2021_04/ralf-grey.thumb.jpg.9cd976d9d22d1970807507ce2d368f2a.jpg", "url": "https://invisioncommunity.com/profile/374850-opentype/" } },
  7. Hi. I know it's just a warning but... I'm reporting it as a bug. The warning applies to the user's profile. Example Code: "interactionStatistic": [ { "@type": "InteractionCounter", "interactionType": "http://schema.org/CommentAction", "userInteractionCount": 3557 }, { "@type": "InteractionCounter", "interactionType": "http://schema.org/ViewAction", "userInteractionCount": 14299 } ] }
  8. Please also include: Template: editorAttachmentsPlaceholder Code: Note: There is a duplicate ul element here, which is unnecessary. Edit: There is a duplicate </li> element here as well. {{elseif \IPS\Settings::i()->allow_remote_images }} <div> <ul class='ipsList_inline ipsClearfix'> <li class='ipsPos_right'> <a class="ipsButton ipsButton_veryLight ipsButton_verySmall" href='#' data-ipsDialog data-ipsDialog-forceReload data-ipsDialog-title='{lang="editor_insert_from_url"}' data-ipsDialog-url="{url="app=core&module=system&controller=editor&do=link&image=1&postKey={$editor}&editorId={$name}" csrf="1"}">{lang="editor_insert_from_url"}</a></li> </li> </ul> </div> {{endif}} HotFix: {{elseif \IPS\Settings::i()->allow_remote_images }} <li class='ipsPos_right'> <a class="ipsButton ipsButton_veryLight ipsButton_verySmall" href='#' data-ipsDialog data-ipsDialog-forceReload data-ipsDialog-title='{lang="editor_insert_from_url"}' data-ipsDialog-url="{url="app=core&module=system&controller=editor&do=link&image=1&postKey={$editor}&editorId={$name}" csrf="1"}">{lang="editor_insert_from_url"}</a> </li> {{endif}}
  9. Hi. Another thing that can be improved for peace of mind 🤙 The button role is unnecessary for element button. Warning: Template: global/forms/button
  10. EDIT: replacing div with span solves the error. <div class='ipsFlex ipsFlex-jc:between ipsFlex-fw:wrap ipsFlex-ai:center'> to <span class='ipsFlex ipsFlex-jc:between ipsFlex-fw:wrap ipsFlex-ai:center'>
  11. Hi. I noticed an HTML syntax error in the "whosOnline" template. It's nothing serious, but please consider fixing it 🙂 👍 Error: Template: whosOnline <h3 class='ipsType_reset ipsWidget_title'> <div class='ipsFlex ipsFlex-jc:between ipsFlex-fw:wrap ipsFlex-ai:center'> <span>
  12. Hi. I'm thinking that since user profiles are now indexed, maybe it would be useful to add them to the sitemap? Additionally, don't you think it's worth blocking sites like /badges/ /content/ /solutions/ followers/ and /repotations/ with the "noindex" tag? these sites have no value or useful content. Example:
  13. Hi. I noticed that static pages do not contain the caononical tag. I mean the pages: /guidelines/ /cookies/ /privacy/ /events/ Additionally, there is no friendly redirection for the calendar: https://invisioncommunity.com/index.php?app=calendar
×
×
  • Create New...