how do i edit my about us page? I mean how do I place my own content in aboutus.php page?? please help!!
how do i edit my about us page? I mean how do I place my own content in aboutus.php page?? please help!! |
from admin look at langauge settings. as you can see here, there are quite a few areas you can tinker with. clicking on each one of the links that say edit, will show you the exact content on that file. just a note, once you have edited this file, you need to recompile your language file. Regards, When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support |
The way it's done in Dolphin drives me nuts for some reason. You can also edit the about_us.php file in your sites root directory so that the last several lines look like this: . /** } Note that all of the code between the two curly brakets just before the closing php tag has been removed. . Then, you can create a file named Page_11.html and upload it to: http://yoursite.com/templates/tmpl_uni/ . The basic code for page_11.html should look like this: . __include _header.html__
<html>
</html>
. Then just place all your custom html code between the opening and closing html tags. This is useful if you want to have a content rich html page for your 'About Us' An elaborate About Us page with a lot of html formatting can be a real pain to add by editing language strings. Make backup copies of any file you edit just in case.... . If all you want to do is change the text a bit, then just follow DosDawgs instructions.
My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
instead of going through making a new html page can't I just replace the existing content with my content |
instead of going through making a new html page can't I just replace the existing content with my content Yes you can. Just like DosDawg said in his reply. My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
Hey thanx! DosDog and houstonlively. Seems like I had my answer way back long and I was trying to find the answer. I was having misconception about the language setting. Anyway I go the solution to my problem thanx |
Hey thanx! DosDog and houstonlively. Seems like I had my answer way back long and I was trying to find the answer. I was having misconception about the language setting. Anyway I go the solution to my problem thanx
Editing language strings is an unorthodox way to have to do this, but that's just the way it is in 6.1.4 . I just presented an alternate way of changing the 'About Us' page in case you wanted to add a lot of formatting, pictures, embedded media, etc. Like I said, if you want to add a lot of formatting to the page, it may not be very convenient to do it by editing language strings. . Glad you got it worked out. My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
The way it's done in Dolphin drives me nuts for some reason. You can also edit the about_us.php file in your sites root directory so that the last several lines look like this: . /** } Note that all of the code between the two curly brakets just before the closing php tag has been removed. . Then, you can create a file named Page_11.html and upload it to: http://yoursite.com/templates/tmpl_uni/ . The basic code for page_11.html should look like this: . __include _header.html__
<html>
</html>
. Then just place all your custom html code between the opening and closing html tags. This is useful if you want to have a content rich html page for your 'About Us' An elaborate About Us page with a lot of html formatting can be a real pain to add by editing language strings. Make backup copies of any file you edit just in case.... . If all you want to do is change the text a bit, then just follow DosDawgs instructions. Thank YOU very much I was looking for this it helps to search forums sometimes :) |