Planet Nexus Support Forum
  • Portal
  • Web Home
  • Search
  • Members
  • System
    • NexAds
    • NexAds FAQ
    • Sites Roster
    • Stats Wall
    • Help Docs
    • Rules
    • Unread Posts
    • Today's Posts
Login or Register Hello There, Guest! Please Login or Register to gain Full Access!
Login for NexAds and Support Access
Username:
Password: Lost Password?
 

  1. Planet Nexus
  2. Planet Control
  3. Service Discussion & Feedback
  4. Nexus system feature requests
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Thread Modes
Nexus system feature requests
Skyon Archer
Lead Developer
Posts: 1,412
Threads: 71
Joined: Jul 2018
Reputation: 9
My TimeZone: -6
#8
01-25-2019, 10:33 PM
Cory, we have rolled out RSS feeds for the blurb and the Comments.  It should be easy enough to incorporate those into a website by using jquery.

I have thrown together a quick example here for you.

Disclaimer: I'm not a pro at jQuery and there may be a better way, this is just one way

If you have posted a blurb, either go to your Control Panel and get the RSS feed link or on your MyPage there will be a RSS feed link available.  Copy the link to your Blurb RSS Feed.  In your case, it would be https://planetnexus.net/nexsys/rss/168

However, since you haven't made a blurb (as of yet), we will use my blurb link which is https://planetnexus.net/nexsys/rss/2

Now, put a division where you would like the blurb to be displayed:

Code:
<div id="rssfeed"></div>

Afterwards, put the following:

Code:
<script>
$.get("https://planetnexus.net/nexsys/rss/2", function(data) {
   var $RSS = $(data);
   $RSS.find("item").each(function() {
       var $this = $(this),
           item = {
               title: $this.find("title").text(),
               description: $this.find("description").text()
           };
       $('#rssfeed').append($('<div id="feedtitle">').html(item.title));
       $('#rssfeed div#feedtitle').after($('<div>').html(item.description));
   });
});
</script>

You should now have the posted blurb displayed inside the division you created with an ID of rssfeed.

Here's an example of it in action: https://planetnexus.net/nexsys/blurb-rss-test

Disclaimer 2: no styling has been used to make it pretty and such :)

TierraHost.com - TierraHosting.com - TierraHosting.net - Tierra.Hosting - TierraHosting.us - YourDomainNinja.com - SpicesDomains.com - BaratoDomains.com
Website Find
Reply
« Next Oldest | Next Newest »


Messages In This Thread
Nexus system feature requests - by Helena - 01-24-2019, 05:31 PM
RE: Nexus system feature requests - by Cory - 01-24-2019, 08:53 PM
RE: Nexus system feature requests - by Skyon Archer - 01-24-2019, 09:07 PM
RE: Nexus system feature requests - by Helena - 01-24-2019, 09:16 PM
RE: Nexus system feature requests - by Skyon Archer - 01-25-2019, 12:12 AM
RE: Nexus system feature requests - by Cory - 01-25-2019, 01:16 AM
RE: Nexus system feature requests - by Skyon Archer - 01-25-2019, 01:18 AM
RE: Nexus system feature requests - by Skyon Archer - 01-25-2019, 10:33 PM

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:


Users browsing this thread: 2 Guest(s)

About Planet Nexus

Support and discussion forum for our Nexworking subscribers and friends.
Welcome to Planet Nexus!

Quick Links



Reach Us

Contact Us  Meet Our team

Powered By MyBB - Hosted by Tierra Hosting Index
 
TOP
Linear Mode
Threaded Mode