Jump to content

sadams101

Clients
  • Posts

    778
  • Joined

  • Last visited

Reputation Activity

  1. Like
    sadams101 reacted to Marc Stridgen in PageSpeed Insights SEO Issue: Links are not crawlable   
    As mentioned by my colleague, a bug report has been added for this. We cannot guarantee a version a bug fix will be in 
  2. Like
    sadams101 reacted to Jim M in PageSpeed Insights SEO Issue: Links are not crawlable   
    I have reported this internally. However, I don't think you want them to index the expand truncated quote link anyway so likely this will be altered 😉 . Ultimately, it's not hurting you or helping you but definitely something we should review.
  3. Thanks
    sadams101 reacted to SeNioR- in PageSpeed Insights SEO Issue: Links are not crawlable   
    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}}
  4. Agree
    sadams101 got a reaction from SeNioR- in PageSpeed Insights SEO Issue: Links are not crawlable   
    Can you please look into a fix for this issue, which affects both Mobile and Desktop versions of any forum post that includes a quote (this happens on nearly every thread in my forum).
    Example URL:
    https://www.celiac.com/forums/topic/158184-link-between-celiac-and-globulin-or-eosinophils/
    View Issue on PageSpeed Insights:
    https://pagespeed.web.dev/analysis/https-www-celiac-com-forums-topic-158184-link-between-celiac-and-globulin-or-eosinophils/do1q1usgq0?form_factor=mobile
    Error:
    Links are not crawlable Search engines may use href attributes on links to crawl websites. Ensure that the href attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable  
  5. Like
    sadams101 reacted to David N. in My site (and this site) are slow, about 10 seconds to see a topic?   
    My site is very slow right now, it takes about 10 seconds after I click on a topic name to see the topic. Clicking the notification bell doesn't display notifications. I see the progress wheel turn and nothing. 
  6. Thanks
    sadams101 reacted to Marc Stridgen in PageSpeed Insights Fix Needed for Link Back to Original Post in Quotes   
    Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
     
  7. Like
    sadams101 got a reaction from Adlago in PageSpeed Insights Fix Needed for Link Back to Original Post in Quotes   
    Can you please add this to the next update?
    The following errors are generated by Google PageSpeed Insights for all links back to the original post in quotes:
    Links do not have a discernible name Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible. Examples of such links can be found on this page:
    https://www.celiac.com/forums/topic/158184-link-between-celiac-and-globulin-or-eosinophils/
    and if you look at the "Accessibility" are for either Mobile or Desktop here you will see the details:
    https://pagespeed.web.dev/analysis/https-www-celiac-com-forums-topic-158184-link-between-celiac-and-globulin-or-eosinophils/v17t9q5iwi?form_factor=desktop
    I suspect that this involves adding text like "Go To Quoted Post" in a JS files, or perhaps a PHP file.

     
     
  8. Like
    sadams101 got a reaction from SeNioR- in PageSpeed Insights Fix Needed for Link Back to Original Post in Quotes   
    Can you please add this to the next update?
    The following errors are generated by Google PageSpeed Insights for all links back to the original post in quotes:
    Links do not have a discernible name Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible. Examples of such links can be found on this page:
    https://www.celiac.com/forums/topic/158184-link-between-celiac-and-globulin-or-eosinophils/
    and if you look at the "Accessibility" are for either Mobile or Desktop here you will see the details:
    https://pagespeed.web.dev/analysis/https-www-celiac-com-forums-topic-158184-link-between-celiac-and-globulin-or-eosinophils/v17t9q5iwi?form_factor=desktop
    I suspect that this involves adding text like "Go To Quoted Post" in a JS files, or perhaps a PHP file.

     
     
  9. Like
    sadams101 reacted to DawPi in Possible Issue After Recent Patch   
    To be honest, it's quite easy to reproduce. See this:

    Someone or something is attempting to "hack" or something on the board. In the code, you may try to find it at applications\calendar\modules\front\calendar\view.php:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? min( array( \IPS\Request::i()->offset, \count( $events ) ) ) : 0; As you can see, there is no check to ensure that the offset value is an integer. Please try changing it to:
    /* Pagination */ $offset = isset( \IPS\Request::i()->offset ) ? \intval( \IPS\Request::i()->offset ) : 0; $offset = $offset ? min( array( $offset, \count( $events ) ) ) : 0; Should help.
  10. Like
    sadams101 got a reaction from Marc Stridgen in Possible Issue After Recent Patch   
    Ok, I will do some more testing by disabling some apps and plugins and see if it is related to any of them. I'll report back what I find.
  11. Like
    sadams101 reacted to Jim M in As of February 21st, 2024, google.maps.Marker is deprecated.   
    Deprecated does not mean removed. As it says there, at least 12 months notice will be given before support is discontinued.
    You will want to check your API configuration to our guide if your maps are not displaying.
  12. Like
    sadams101 got a reaction from SeNioR- in As of February 21st, 2024, google.maps.Marker is deprecated.   
    In the admin ACP when viewing a member the map is now grey, and in Chrome console I see this warning:
     
  13. Agree
    sadams101 got a reaction from David N. in Addition of "Reply" Only Option   
    Bare with me here, because the reason for this suggested change likely does not happen on your own forum...this forum...because your users are highly biased--we're all more or less "experts" with how forums work, and especially Invision forums.
    The Problem--too many users use "Quote & Reply", and then put their reply within the quote.
    My forum has been running continuously for over 20 years now, and I am having a growing issue with the use of the "Quote & Reply"--the problem specifically is that most newer users, and even some older ones, always use this to respond--even if they reply to a post directly after it. A bigger problem, however, is that many users don't know how to deal with the quote that is copied into the reply. Around 25% of my posters now put their reply within that quote--either above the content or below it, but within it--they just don't get it. This makes finding their reply very difficult if they reply to long posts, which happens often on my forum. Some users reply properly outside the quote, but post it either above it or below it, there is no rhyme or reason.
    I now have to edit many posts daily to extract someone's reply from within the quoted area, and put it outside the quoted area. This seems to be a growing issue for me, and perhaps it is due to the fact that more users, perhaps younger, from Facebook or other social platforms are now posting and they just don't get how to use this quote feature.
    A Solution--Add a "Reply" link first
    Instead of:
    +(multi quote) | Quote & Reply | Mark as Solution
    I propose:
    Reply | Quote & Reply | +(multi quote) | Mark as Solution 
    In this case clicking the Reply option would simply take them down to the "Reply to this Topic" field, preferably that field would be opened up, and their cursor would be flashing within it, so all they have to do is start typing. Most people should simply be replying within a topic, rather than quoting and replying.
    +(multi quote)
    Also, regarding the multi quote feature, I believe that at best, 1/100 to 1/200 people in my forum ever figure out how to use that correctly, and it is rarely used. It would make more sense to move this over rather than making it the first option.
    Please let me know what you think.
  14. Like
    sadams101 reacted to Sonya* in Addition of "Reply" Only Option   
    We have a "Mention" link. It just scrolls down to the Reply-field and adds the username, formatted as mention. No quote. Just the username.

    You could rename it to Reply. 
    (It is a pretty simple plugin that was offered in the past on the Marketplace.) 
  15. Like
    sadams101 got a reaction from SC36DC in Addition of "Reply" Only Option   
    I'm not sure I would see any more confusion than I do now...again, it's getting to where I need to edit ~15-20% of the posts in my forum.
    I have experimented with using just "Quote" and still have the same issue. I added Quote & Reply a while back because of the number of people who would ask how they can reply. They had no idea you had to scroll to the bottom!
  16. Agree
    sadams101 got a reaction from SC36DC in Addition of "Reply" Only Option   
    Bare with me here, because the reason for this suggested change likely does not happen on your own forum...this forum...because your users are highly biased--we're all more or less "experts" with how forums work, and especially Invision forums.
    The Problem--too many users use "Quote & Reply", and then put their reply within the quote.
    My forum has been running continuously for over 20 years now, and I am having a growing issue with the use of the "Quote & Reply"--the problem specifically is that most newer users, and even some older ones, always use this to respond--even if they reply to a post directly after it. A bigger problem, however, is that many users don't know how to deal with the quote that is copied into the reply. Around 25% of my posters now put their reply within that quote--either above the content or below it, but within it--they just don't get it. This makes finding their reply very difficult if they reply to long posts, which happens often on my forum. Some users reply properly outside the quote, but post it either above it or below it, there is no rhyme or reason.
    I now have to edit many posts daily to extract someone's reply from within the quoted area, and put it outside the quoted area. This seems to be a growing issue for me, and perhaps it is due to the fact that more users, perhaps younger, from Facebook or other social platforms are now posting and they just don't get how to use this quote feature.
    A Solution--Add a "Reply" link first
    Instead of:
    +(multi quote) | Quote & Reply | Mark as Solution
    I propose:
    Reply | Quote & Reply | +(multi quote) | Mark as Solution 
    In this case clicking the Reply option would simply take them down to the "Reply to this Topic" field, preferably that field would be opened up, and their cursor would be flashing within it, so all they have to do is start typing. Most people should simply be replying within a topic, rather than quoting and replying.
    +(multi quote)
    Also, regarding the multi quote feature, I believe that at best, 1/100 to 1/200 people in my forum ever figure out how to use that correctly, and it is rarely used. It would make more sense to move this over rather than making it the first option.
    Please let me know what you think.
  17. Like
    sadams101 got a reaction from Jelly Belly™ in Addition of "Reply" Only Option   
    Since it literally happens several times a day on my forum from different users, so I would not say that I have a unique problem. Again, most people don't need to quote at all, but that is the only option they see to reply to a post they might be reading. Just a simple reply button that takes them to the reply field would solve this.
    I actually just corrected a post where the user hit quote and reply, then erased all the quote and put in their own reply within the quote field area...very frustrating.
  18. Agree
    sadams101 got a reaction from WebCMS in "List-unsubscribe" in the email header   
    I still see adding this as a net positive. Why? Because on a daily basis I must manually unsubscribe people who are too lazy to do this themselves, and they hit the spam button instead of doing the right thing (I am subscribed to the feedback loops). 
    Gmail has already incorporated this now to some degree. If, for example, I hit the spam button to report real spam, but there is a one-click unsubscribe link in the header of that spam email, I am now asked by Gmail if I want to unsubscribe via a pop up. Since the coding for this can't be too difficult, I see only an upside to including it, especially if it increases email deliverability.
  19. Like
    sadams101 reacted to TheLlamaman in "List-unsubscribe" in the email header   
    This happens with my community too.
    I am using Amazon SES. Some people, probably out of laziness or lack of awareness, mark their notification emails (event new private message ones) as spam which ends up hurting reputation.
    I have a suppression list setup on the SES side to prevent sending of emails in the future to the offending email address, however it does not stop the reputation being damaged in the first place.
    A list-unsubscribe in the email would absolutely help here.
  20. Agree
    sadams101 got a reaction from Maxxius in "List-unsubscribe" in the email header   
    I still see adding this as a net positive. Why? Because on a daily basis I must manually unsubscribe people who are too lazy to do this themselves, and they hit the spam button instead of doing the right thing (I am subscribed to the feedback loops). 
    Gmail has already incorporated this now to some degree. If, for example, I hit the spam button to report real spam, but there is a one-click unsubscribe link in the header of that spam email, I am now asked by Gmail if I want to unsubscribe via a pop up. Since the coding for this can't be too difficult, I see only an upside to including it, especially if it increases email deliverability.
  21. Like
    sadams101 got a reaction from SoloInter in Uses deprecated APIs ...   
    Google says: "Deprecated APIs are scheduled to be removed from Chrome." Will you beat this removal date, and do you know what that date actually is?
  22. Like
    sadams101 got a reaction from SoloInter in Uses deprecated APIs ...   
    I don't know what the schedule is for v5, but it seems to me that some sort of patch might be needed here for v4, as this is ~6 months away. It's hard for me to believe that v5 will come out with enough time for everyone to get upgraded by then.
  23. Like
    sadams101 got a reaction from SoloInter in Uses deprecated APIs ...   
    ...and you've known about this issue since 2020.
  24. Like
    sadams101 got a reaction from SoloInter in Uses deprecated APIs ...   
    So if I understand your response, perhaps my site won't function properly for 30-50% of Chrome users by the end of this year, and 100% one year from now, if you don't fix this issue in time?
  25. Thanks
    sadams101 reacted to Matt in Uses deprecated APIs ...   
    We are not going to simply allow all our customers to never use Google Chrome again. 😅 That would be a terrible decision.
    We will ensure it's resolved ahead of the removal later this year. We use an older plugin for jQuery to manage browser history state. We already plan to move that to native JS APIs in v5 and v4.
×
×
  • Create New...