News:

Create A Forum Installed

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - e a t p l z

Pages: [1]
1
General Support / Membergroup Rank Image not displaying, please help
« on: October 18, 2015, 07:51:49 pm »
I got it to show on the "Membergroup" Page that it's working. But on the actual forum itself, my image is not displayed.

Here is my code;

Code: [Select]
<script type='text/javascript'>
/*
Change Any Image On Page
Created by iFusion
*/
var img_b = new Array();

img_b[img_b.length++] = ["http://images.smfboards.com/ranks/star.gif" , "http://i58.tinypic.com/210nlo9.jpg"]

var all_images = document.getElementsByTagName('IMG');
for(i=0;i<all_images.length;i++){
for(j=0;j<img_b.length;j++){
   if(all_images[i].src == img_b[j][0]){
     all_images[i].src = img_b[j][1];
}}}
</script>


Here is the picture of membergroups;



I changed the settings because I want that image and title to display, but I still want administrator settings on the account.



And on the forum;


2
General Support / Re: How do i make another administrator membergroup?
« on: October 18, 2015, 05:05:12 pm »
redrepublic.createaforum.com

3
General Support / Re: How do i make another administrator membergroup?
« on: October 18, 2015, 04:44:45 pm »
I got it to show on the "Membergroup" Page that it's working. But on the actual forum itself, my image is not displayed.

Here is my code;

Code: [Select]
<script type='text/javascript'>
/*
Change Any Image On Page
Created by iFusion
*/
var img_b = new Array();

img_b[img_b.length++] = ["http://images.smfboards.com/ranks/star.gif" , "http://i58.tinypic.com/210nlo9.jpg"]

var all_images = document.getElementsByTagName('IMG');
for(i=0;i<all_images.length;i++){
for(j=0;j<img_b.length;j++){
   if(all_images[i].src == img_b[j][0]){
     all_images[i].src = img_b[j][1];
}}}
</script>


Here is the picture of membergroups;



I changed the settings because I want that image and title to display, but I still want administrator settings on the account.



And on the forum;


4
General Support / Re: How do i make another administrator membergroup?
« on: October 18, 2015, 04:06:25 pm »
i just realized i said i want them to have different membergroup privleges. I meant to say, I want them to have different membergroup ranks/icons. Like one to say founder, admin, etc.. but still be an administrator.

5
General Support / How do i make another administrator membergroup?
« on: October 18, 2015, 03:51:40 pm »
Hi, i have a few admins on my forum. But the thing is, i want each one to have different membergroup privleges but still be administrator. How do i do this? When i go to create a new membergroup there's no option to make admin permissions. ty

Pages: [1]