Jump to content

Nathan Explosion

Friends
  • Joined

Posts posted by Nathan Explosion

  1. 16 hours ago, Square Wheels said:

    Please return the star icon for threads I have posted in.

    My browser favorites are set view Unread Content.

    I usually look for the star next to a post to see if I posted there.

    Unless I am missing a setting, I no longer see that.

    Take a look at this screenshot - see if you can guess which one I've posted in (look at the user photo)

    image.png

    Zoomed in...

    image.png

  2. ·

    Edited by Nathan Explosion

    OK - I'll be the guy, now that you've stated something that would have helped from the start...

    A search for "Marquee" on here doesn't yield much in relation to a 'plugin' that may exist, which gives an indication that it may not have existed here on the marketplace (no support topic, see). So how about more information on what exactly this "marquee plugin" is? Is that its actuall name, or is that what you refer to it as (if so, what is its name?) Who developed it? Was it a v4 plugin, or was it maybe a REALLY old plugin that existed back with v3?

    More details...better answers.

  3. 1 hour ago, Drewfus said:

    Like I said you can create the block then use your page editor to add the block to the top.I have an example on my site if you want to see it in action.

    Go to your admin scroll to pages click blocks create new block manual html then give your block a title then click on content tab add this code.

    <!DOCTYPE html>
    <html>
    <body>
    	<style>
    .btn {
    background: #0400ff;
      text-decoration: none;
      padding: 0.5rem;
      border: 1px solid #333333;
    }
    </style>
    <marquee font style="bold" scrolldelay="100"><font size="5" face="Verdana"><font color="#BC8F8F">
    ***Get all the Latest News... World News..UK News..US News..ect.***
    
        <a class="btn" href="https://your site/latest news/">
          Click to see our news
    
    
        </a></marquee>
    
    
    
    

    How to do it without using a deprecated tag

    <!DOCTYPE html>
    <html>
      <head>
          <style>
            .marquee {
                white-space: nowrap;
                animation: scroll-right-left 10s linear infinite;
            }
            @keyframes scroll-right-left {
                from {
                    transform: translateX(400px);
                }
                to {
                    transform: translateX(-1600px);
                }
            }
        	</style>
    	</head>
    	<body>
    		<div class="marquee">this is a marquee done without using the deprecated marquee tag.</div>
    	</body>
    </html>

     

  4. You're using native JS - ${variable} would be fine if jQuery wasn't already using $.

    Change a line

    13 minutes ago, Saurabh Jain said:

    userInfoElement.textContent = `Logged-in Member ID: \${memberId}, Name: \${memberName}`;

    And then it works fine, depending on where you put it

    image.png.c60284c9ed631f6695141e12bf30f416.png

     

     

    9 minutes ago, Saurabh Jain said:

    am using in pages

    WHERE in Pages? More detail, not scraps...

  5. ·

    Edited by Nathan Explosion

    2 hours ago, Saurabh Jain said:

    is this correct

    Have you tried it yet yourself? What were the results, if you did?

    You've given zero indication about where you are planning to use that so it is difficult to say if it would be correct. More detail is always better than...

    Anyway...this JS will work, depending on where you put it.

    const memberId = ips.getSetting('memberID');
    const userLink = document.getElementById('elUserLink');
    const memberName = userLink.textContent.trim();

     

  6. And I am showing him where he can find the URL for the RSS feed of a page when it is being viewed, which is what he was originally asking for and wasn't ever actually answered in a clear statement

    On 12/4/2024 at 2:56 PM, tpasa said:

    But I can't find my RSS URL to send to Baseball Reference. 

     

  7. 33 minutes ago, tpasa said:

    I'm going to assume the link I provided is the RSS feed URL for that forum and that I will need to submit each forum RSS feed URL.

    This is the forum: https://forum.orioleshangout.com/forum/3-minors

    Now, scroll all the way down to the bottom of the page:

    image.thumb.png.2441348ab9c476cb75a7e702e423ae61.png

    That is the link to the RSS feed for that forum.

    It will be the same place on each page if an RSS feed exists for it - it's down there in the footer area.

  8. And seeing as staff can view who the author is (via that eye) then nothing extra is being presented here that isn't already available via that method.

    And disabling the "Can view anonymous author info?" mod permission results in the hiding of both the eye and the 'edited' information.

  9. ·

    Edited by Nathan Explosion

    And now tested...anonymous user unable to edit their own post, as far as I can see, so not sure how they've ended up in the situation the poster mentions (same user posted all three of the below, and is being used to attempt to edit)

    image.thumb.png.1211f094bd5024fc37b9d9a051c02714.png

  10. Just now, Marc said:

    As said, I have brought it up as a bug report

    Good because that is what they are reporting - not that someone else has edited it, but that the anonymous poster has edited it.

    On 10/20/2024 at 12:11 AM, Mick23 said:

    In addition, if a user edits their anonymous post it will show their user name in the edit message.

    Anyway - was just correcting the 'quoted' confusion.

    Off I head to test it out now...