View Full Version : removing modules [posting calendar, blogrings, etc.]


messypaint
05-30-2005, 04:33 AM
i want to remove my subscriptions, blogrings, and posting calendar modules. would anyone happen to have the codes to do so?

thank you.

-L

tokyo bleu
05-30-2005, 07:12 AM
Remove posting calendar: http://createblog.com/forums/index.php?showtopic=45

Nilazarach
05-31-2005, 12:34 PM
This is the code in the link provided:

<!-- begin code provided by createblog.com -->
<script language="javascript"><!--
// original by sean, http://www.xanga.com/seanmeister
if (location.href.match ("home.aspx")) {
var ht = document.getElementsByTagName ('table');
for (var t = 0; t < 10; t++) {
str = ht[t].cells[0].innerHTML;
if (!str.match (/Sites I Read/i) && str.match (/(Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none";
}
}
//--></script>
<!-- end code provided by createblog.com -->

~~if you want to remove "my blogrings" simply make it like this (in bold text):

<!-- begin code provided by createblog.com -->
<script language="javascript"><!--
// original by sean, http://www.xanga.com/seanmeister
if (location.href.match ("home.aspx")) {
var ht = document.getElementsByTagName ('table');
for (var t = 0; t < 10; t++) {
str = ht[t].cells[0].innerHTML;
if (!str.match (/Sites I Read/i) && str.match (/(my blogrings|Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none";
}
}
//--></script>
<!-- end code provided by createblog.com -->

But I cannot make the "subscriptions" thing go away..
and another thing, which I hope someone can help me with:
- I'd want the blogring to be 'removed' in public view, but visible for me when I'm logged on. Possible?

tokyo bleu
06-01-2005, 03:41 AM
I'd want the blogring to be 'removed' in public view, but visible for me when I'm logged on. Possible?

No.

Absolovely
09-11-2005, 06:40 PM
I've been trying to remove my left side modules (mainly the posting calendar and subscriptions) and limiting my entries (let's say for only 1 entry to show at a time) and I've been having problems. It was fine until recently, can someone help? When I put in the code and preview, it looks fine. After I click save and go back to my Xanga site, it changes. Help?

I have this code:

<!-- begin code provided by createblog.com -->
<script language="javascript"><!--
// original by sean, http://www.xanga.com/seanmeister
if (location.href.match ("home.aspx")) {
var ht = document.getElementsByTagName ('table');
for (var t = 0; t < 10; t++) {
str = ht[t].cells[0].innerHTML;
if (!str.match (/Sites I Read/i) && str.match (/(Posting Calendar|Get Involved!|Build Traffic!)/i)) ht[t].style.display = "none";
}
}
//--></script>
<!-- end code provided by createblog.com -->



And this code (I think):

<script>
numberOfEntries = 1; //Change this value here...

if(location.pathname=='/home.aspx'){
var tds = document.getElementsByTagName ('a');
for (var i = 0; i < tds.length; i++) {
timeString = tds[i].innerText;
if(timeString.match(/\d+:\d+ [ap]m\b/i)){break;}}
stuff = tds[i].parentNode.parentNode.parentNode.parentNode.paren tNode;
for(j=1;j<numberOfEntries;j++){
stuff=stuff.nextSibling.nextSibling.nextSibling
if(stuff.tagName=='BR'){
stuff=stuff.previousSibling;}}
for(i=0;i<20;i++){
if(stuff.tagName=='HR' && stuff.nextSibling.tagName=='TABLE'){
stuff.nextSibling.removeNode(true);
break;}
stuff = stuff.nextSibling;
stuff.style.display='none';
}}
</script>

tokyo bleu
09-11-2005, 09:59 PM
Link to your Xanga, Absolovely.

Absolovely
09-12-2005, 07:38 PM
Hi Tokyo Blue!
Here you go!

www.xanga.com/absolovely

Thank you!