Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Questions and Supports

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 09-23-2013, 05:54 PM
Starrunner's Avatar
Starrunner Starrunner is offline
Member
 
Join Date: Sep 2013
Posts: 16
Gender: Male
Credits: 2,344
Starrunner is on a distinguished road
Default Just 2 more things

1)How to remove Site name from banner? I'm using main theme so in templates i can't fint it to delete it.

2) I found a great tutorial for adding avatars to member list. But i believe it was meant for older versions i believe. I'm currently using 1.3.2 how to add it without upgrading?

thx
Reply With Quote
  #2  
Old 09-24-2013, 07:45 AM
Hwona's Avatar
Hwona Hwona is offline
Member
 
Join Date: Mar 2013
Posts: 620
Gender: Female
Credits: 48,183
Hwona is on a distinguished road
Default

1. go to themes > main > and edit the style sheet. :3
__________________
Reply With Quote
  #3  
Old 09-24-2013, 09:39 AM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,160
Tequila is on a distinguished road
Default

Here's some information I have regarding the development of the theme that's used (:3)
Quote:
image replacement
Replacing the images for the title box is very simple. All you need to do is find:
[php[#image{border-left:10px solid #fff; border-right:10px solid #fff; border-bottom:5px solid #fff; background:url("standard.png"); height:150px; }[/php]
and put your image url into the provided space for background. You can also change the height as needed.
In the main template you can remove the text by finding where it has
PHP Code:
<span><a href="index.php">{TITLECODE}</a></span
and removing it. ;3
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #4  
Old 09-24-2013, 10:35 AM
Starrunner's Avatar
Starrunner Starrunner is offline
Member
 
Join Date: Sep 2013
Posts: 16
Gender: Male
Credits: 2,344
Starrunner is on a distinguished road
Default

Umm i have bad luck xD Here is what i have in main>template.html
Code:
:LINKSBAR:
Mysidia Adoptables v1.3.2
:SIDEFEED:
::
:ARTICLECONTENT:
★ Powered by Mysidia Adoptables v1.3.2 ★
And i was trying to follow this tutorial http://www.mysidiaadoptables.com/for...ead.php?t=2089

But i dont have such codes in my profile.php
Code:
<?php  

$filename = "profile";
require("inc/init.php");
include("inc/tabs.php");
include("inc/bbcode.php");

//***************//
//  START SCRIPT //
//***************//

// This page handles user profiles and shows the site members...

if(!$mysidia->input->get("user")){
  // We have not select a user profile yet, so show memberlist instead
  UserProfile::memberlist();
}  
else{
  $mysidia->page->settitle("{$mysidia->input->get("user")}'s Profile");
  $validator = new UserValidator($mysidia->user, array());
  
  if(!$validator->validate("username", $mysidia->input->get("user"))){
     // The user does not exist, show an error message instead
	 $mysidia->page->addcontent($lang->nonexist);
  }
  else{
     // We have specified an existing user profile, now its getting interesting
	 $user = new Member($mysidia->input->get("user"));
	 $user->getprofile();
	 
	 // Now start the tab script
	 $tabs = array("Visitor Message" => "visitormessage", "About Me" => "aboutme", "Adoptables" => "adopts", 
	               "Friends" => "friends", "Contact Info" => "contactinfo");
     $profiletabs = new Tab(5, $tabs, 2);
	 $profiletabs->createtab();
	 
	 // Format basic user profile info
	 $user->profile->formatusername($user)->getfavpet();
	 
	 // Here we go with the first tab content: Visitor Message
	 $profiletabs->starttab(0);
	 $mysidia->page->addcontent("<strong><u>{$mysidia->input->get("user")}{$lang->VM_member}");
	 $user->profile->display("vmessages");
	 $mysidia->user->getstatus();
	 
	 if(!$mysidia->user->isloggedin) $mysidia->page->addcontent($lang->VM_guest);
	 elseif(!$mysidia->user->status->canvm) $mysidia->page->addcontent($lang->VM_banned);
	 else{
	    $vmessage = new VisitorMessage();		
		$vmessage->setrecipient($user->username);
		$vmessage->post();
		if($mysidia->input->post("vmtext")) $vmessage->execute("post");
	 }
	 $profiletabs->endtab(0);
	 
	 // Now the second tab: About me...
	 $profiletabs->starttab(1);
	 $user->profile->display("aboutme");
	 $profiletabs->endtab(1);
	 
	 // The third tab: Adopts...	
	 $profiletabs->starttab(2);
	 $user->getadopts();

     try{ 
         $user->profile->display("adopts");
     }
     catch(Exception $e){ 
         $mysidia->page->addcontent($lang->noadopts);
     }

	 $profiletabs->endtab(2);
	 
	 // The fourth tab: Friends...
	 $profiletabs->starttab(3);
     $user->profile->display("friends", $user);
     $profiletabs->endtab(3);

	 // The last tab: Contact Info!	
     $profiletabs->starttab(4); 
	 $user->getcontacts();
	 $user->formatcontacts();
	 $user->profile->display("contactinfo", $user->contacts);
	 $profiletabs->endtab(4);
  }
  // It's all over now, cheers
}



//***************//
//  OUTPUT PAGE  //
//***************//

$mysidia->output();

?>
:/
Reply With Quote
  #5  
Old 09-24-2013, 12:16 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,160
Tequila is on a distinguished road
Default

Try the header.tpl file instead. ;3
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #6  
Old 09-24-2013, 12:22 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 327,768
Hall of Famer is on a distinguished road
Default

Actually Mys v1.3.2 does not have smarty template yet, so you don't have a .tpl file. Instead, go to template.html file and get rid of :SITENAME: characters if you find it.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #7  
Old 09-24-2013, 12:37 PM
Starrunner's Avatar
Starrunner Starrunner is offline
Member
 
Join Date: Sep 2013
Posts: 16
Gender: Male
Credits: 2,344
Starrunner is on a distinguished road
Default

I posted what i have in my template, what exactly do i need to delete cuz i dont see anything like that there.
Reply With Quote
  #8  
Old 09-24-2013, 12:42 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 96,160
Tequila is on a distinguished road
Default

Try replacing the template file with the following:
PHP Code:
<!DOCTYPE html>

<!--
    
Official Mysidia Adoptables 1.3.x Series Template Theme
    
    
//-----------------------------------------------------
    //    HTML/CSS Coded by Nyxi/tequila
    //  http://www.savedone.tk / http://www.sourserenade.tk
    //-----------------------------------------------------
    //    All Copyright and Credit for Script and theme
    //    to remain in the footer at all times.
    //-----------------------------------------------------
    //    The script is free! We just ask for credit!
    //-----------------------------------------------------
    //    Failure to comply will result in the following
    //    steps:
    //    - Cease and Desist Letter
    //    - Letter to your host
    //    - DMCA filing
    //-----------------------------------------------------
    //    Any questions? Pop on over to our forums at
    //    http://www.mysidiaadoptables.com/forum
    //-----------------------------------------------------

    
Before using this template we encourage you to read the
    included Read Me 
and License.

    
We thank you for your interest.
    - 
the Mysidia Development Team
-->

<
head>
<
title>:BROWSERTITLE:</title>
<
link rel="stylesheet" href="templates/themes/default/media/style-city.css" type="text/css" />


</
head>

<
body>
<
div id="wrapper">
<
table cellspacing="0" cellpadding="0">
<
tr><th colspan="2">
<!-- 
Top Navigation Links -->
<
a href="account.php" class="one">My Account</a><a href="adopt.php" class="two">Adopt Creatures</a><a href="explore.php" class="three">Explore World</a><a href="stats.php" class="four">Community</a>
<!-- 
End -->
</
th></tr>
<
tr><td colspan="2" id="image"></td></tr>
<
tr><td id="menu">
:
SIDEFEED:


</
td><td id="content">
<
h1>:ARTICLETITLE:</h1>
<
p>:ARTICLECONTENT:</p>

</
td></tr>
<
tr><td colspan="2" id="footer">
<
p>Your Site &copy;Copyright Your Name Year Year<br />Powered by <a href="http://www.mysidiaadoptables.com">Mysidia Adoptables</a> &#x2763; theme by the <a href="http://celestic.net">starry sky</a> network</p>
</td></tr>


</
table>
</
div>

</
body>

</
html
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote
  #9  
Old 09-25-2013, 02:08 PM
Starrunner's Avatar
Starrunner Starrunner is offline
Member
 
Join Date: Sep 2013
Posts: 16
Gender: Male
Credits: 2,344
Starrunner is on a distinguished road
Default

I edited it and didnt seem to work, it just messed up the site :/
Anyway i accepted it and doesn't seem a problem anyway. However i got another question [I'm really sorry for so much dragging]

When i put BBCode of my adoptable it is not animated and below it there is its info. How to get rid of its info cuz it makes my signature too big.

sorry again and thanks for helping in advance :)
Reply With Quote
  #10  
Old 01-11-2014, 06:03 PM
Starrunner's Avatar
Starrunner Starrunner is offline
Member
 
Join Date: Sep 2013
Posts: 16
Gender: Male
Credits: 2,344
Starrunner is on a distinguished road
Default

Sorry for resurrecting an old topic, but this really goes on my nerves. I tried to remove the logo on the main banner but it was unsuccessful...
Here is what i got:
Code:
:LINKSBAR:
Mysidia Adoptables v1.3.2
:SIDEFEED:
::
:ARTICLECONTENT:
★ Powered by Mysidia Adoptables v1.3.2 ★
please help, im using main theme.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help With a Few Things parayna Questions and Supports 3 09-28-2015 06:51 AM
A few more little things... Ruinily Questions and Supports 0 07-03-2013 08:16 PM
How can I do these things? AlexC Questions and Supports 27 03-21-2011 03:58 PM
few things help 12345 Questions and Supports 1 05-05-2009 04:23 PM
Few things 12345 Questions and Supports 1 04-21-2009 03:42 PM


All times are GMT -5. The time now is 03:58 AM.

Currently Active Users: 683 (0 members and 683 guests)
Threads: 4,080, Posts: 32,024, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636