Armatus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Warning: cannot modify header informationYeah, now to just try and figure out my other problems. lol Thanks again for the help.
Forum: Fixing WordPress
In reply to: Warning: cannot modify header informationI actually think I got it working.. The error is gone now.. I went to t-p’s link. I never saw that troubleshooting guide when I was doing my searches. Thanks for the assistance, guys. Hopefully it does not return.
for reference, I tried the first steps in the guide where it says to go between ? and > and deleted… It still didnt work.. Then I went in front of <?php and deleted to the left of the word and now its working.. So evidently one of those moves fixed it.
Forum: Fixing WordPress
In reply to: Warning: cannot modify header informationEchoing? I’m not sure what that means… If you go to my site, http://www.sanpetemilitiapaintball.com, there are picture sliders at the top. They are like my tabs to go to different sections of my site. If you hover over the picture, it will show the URL at the bottom of the browser… Well the stock/sample theme had urls to their support site.. All i did was go into the functions.php file and change the urls to the corresponding sliders.
Forum: Fixing WordPress
In reply to: Warning: cannot modify header informationThanks Keesie. I changed the links from this:
<li class=\"bk0\"><a href=\"http://mac-host.com/support\" style=\"background: url('".$theme_url."/imagemenu/images/1.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk1\"><a href=\"".$blog_url."\" style=\"background: url('".$theme_url."/imagemenu/images/2.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk2\"><a href=\"".$blog_url."\" style=\"background: url('".$theme_url."/imagemenu/images/3.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk3\"><a href=\"http://mac-host.com/slidingdoor/slider.zip\" style=\"background: url('".$theme_url."/imagemenu/images/4.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk4\"><a href=\"http://mac-host.com/support\" style=\"background: url('".$theme_url."/imagemenu/images/5.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk5\"><a href=\"http://mac-host.com/support\" style=\"background: url('".$theme_url."/imagemenu/images/6.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk6\"><a href=\"http://mac-host.com/support\" style=\"background: url('".$theme_url."/imagemenu/images/7.jpg') repeat scroll 0%;\">slidingdoor</a></li> </ul>";to this:
<li class=\"bk0\"><a href=\"http://sanpetemilitiapaintball.com\" style=\"background: url('".$theme_url."/imagemenu/images/1.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk1\"><a href=\"http://sanpetemilitiapaintball.com/team\" style=\"background: url('".$theme_url."/imagemenu/images/2.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk2\"><a href=\"http://sanpetemilitiapaintball.com/members\" style=\"background: url('".$theme_url."/imagemenu/images/3.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk3\"><a href=\"http://sanpetemilitiapaintball.com/snapshots\" style=\"background: url('".$theme_url."/imagemenu/images/4.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk4\"><a href=\"http://sanpetemilitiapaintball.com/videos\" style=\"background: url('".$theme_url."/imagemenu/images/5.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk5\"><a href=\"http://sanpetemilitiapaintball.com/events\" style=\"background: url('".$theme_url."/imagemenu/images/6.jpg') repeat scroll 0%;\">slidingdoor</a></li> <li class=\"bk6\"><a href=\"http://sanpetemilitiapaintball.com/contact\" style=\"background: url('".$theme_url."/imagemenu/images/7.jpg') repeat scroll 0%;\">slidingdoor</a></li> </ul>";So all I changed was the links such as
http://mac-host.com/support\tohttp://sanpetemilitiapaintball.com/contact\that’s it. Just the urls.