| 
		
			
			
				
			
			
				 
			
			
				
			
		 | 
		
			
			
				 
			
				
			
		 | 
	||||
| 
				Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.  You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us.  | 
		
		 
		![]()  | 
	
		
			
  | 	
	
	
		
		|||||||
| Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. | 
| 
		 | 
	Thread Tools | 
| 
			
			 | 
		#1 | 
| 
			
			
			
			 So Fucking Banned 
			
		
			
			
			Industry Role:  
				Join Date: Jun 2011 
				Location: the land of woke sleuths 
				
				
					Posts: 16,493
				 
				
				
				
				 | 
	
	
	
	
		
			
			 
				
				Another Wordpress Integration Question
			 
			Somebody who is fluent with wordpress may know the answer. 
		
	
		
		
		
		
		
	
	I want to break up the home page of a wordpress site and add a programmed google map. Basically the map is a calculator and calls some php files. How can the home page be modified to include this and have it stay so updates don't erase the code?  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#2 | 
| 
			
			
			
			 Confirmed User 
			
		
			
			
			Industry Role:  
				Join Date: Nov 2005 
				Location: Spain :) 
				
				
					Posts: 2,231
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Create a post as sticky ? 
		
	
		
		
		
		
		
	
	Or hardcode it in your index.php ?  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#3 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Join Date: Oct 2003 
				Location: Command Central, West Palm Beach, Fl 
				
				
					Posts: 1,794
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		
		
	
		
		
		
		
			 
				__________________ 
		
		
		
		
	
	I do stuff - aIm CS_Jay_D  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#4 | 
| 
			
			
			
			 Too lazy to wipe my ass 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Aug 2002 
				Location: A Public Bathroom 
				
				
					Posts: 38,688
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Just delete wordpress entirely - Problems solved and job done...  
		
	
		
		
		
		
			
		
		
		
		
	
	![]()  | 
| 
		
 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#5 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Sep 2004 
				Location: Montrealquebecanada 
				
				
					Posts: 5,500
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 If you hardcode it into you index.php (in your menu goto Appearance/Editor and change to default style sheet), you'd have to maybe limit the number of posts on the index page to one or two if you want to put the map below the main content, otherwise it will appear a long scroll down from first loading. 
		
	
		
		
		
		
			You could also hardcode it above the main content so it's the first thing they see - but I don't think you can break up the posts themselves with the map - unless you want it occurring beneath every post? :D 
				__________________ 
		
		
		
		
	
	![]() YOU Are Industry News! Press Releases: pr[at]payoutmag.com Facebook: Payout Magazine! Facebook: MIKEB! ICQ: 248843947 Skype: Mediaguy1  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#6 | |
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Jul 2001 
				Location: 127.0.0.1 
				
				
					Posts: 9,266
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Quote: 
	
 anyway, a neat way to achieve this without affecting flow is as follows: first add this code between <head></head> tags: Code: 
	<script language="javascript"> 
function toggle() {
	var ele = document.getElementById("hideMap");
	var text = document.getElementById("showMap");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "show";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "hide";
	}
} 
</script>
Code: 
	<a id="showMap" href="javascript:toggle();">Show Map</a> 
<div id="hideMap" style="display: none">{insert your map code here}</div>
				__________________ 
		
		
		
		
	
	This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth  | 
|
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#7 | 
| 
			
			
			
			 Confirmed User 
			
		
			
			
			Industry Role:  
				Join Date: Nov 2005 
				Location: Spain :) 
				
				
					Posts: 2,231
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 Harvey the wp-ninja  
		
	
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#8 | 
| 
			
			
			
			 Confirmed User 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Jul 2001 
				Location: 127.0.0.1 
				
				
					Posts: 9,266
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 ha ha, no, not even close, Fris is the ninja, I'm just a little grasshopper  
		
	
		
		
		
		
			
				__________________ 
		
		
		
		
	
	This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truth  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#9 | 
| 
			
			
			
			 Too lazy to set a custom title 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Aug 2002 
				
				
				
					Posts: 55,372
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 many ways to do it, 1 is harveys way, im sure their are 20+ ways to do it, depending on your skill set, etc. 
		
	
		
		
		
		
			
				__________________ 
		
		
		
		
	
	Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence. ![]() WP Stuff  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 | 
| 
			
			 | 
		#10 | 
| 
			
			
			
			 www.creationcrew.com 
			
		
			
				
			
			
			Industry Role:  
				Join Date: Feb 2005 
				Location: CREATIONCREW.COM  CREATIONCREW.COM  CREATIONCREW.COM  CREATIONCREW.COM  CREATIONCREW.COM  CREATIONCREW.COM 
				
				
					Posts: 12,111
				 
				
				
				
				 | 
	
	
	
	
		
		
		
		 fris is a guru!! 
		
	
		
		
		
		
			
				__________________ 
		
		
		
		
	
	![]() ++ Adult and Mainstream Websites Designs | 10 banners for only $50 | html5 Banners ++ email : [email protected] Telegram : https://t.me/creationcrew | HTML5/Responsive Site - Div/CSS - ElevatedX - NATs - Wordpress  | 
| 
		 | 
	
	
	
		
                 
		
		
		
		
		
		
		
			
			
		
	 |