jceresini
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: google loveIf you have a google account you can submit your site for indexing. Other things to do are make sure your page is that your page is valid html and make sure you have your meta tags set properly for content and description. Don’t go overboard on those though. A google search for “search engine optimization” will also help you find some tips (but beware, some are bullshit)
Forum: Fixing WordPress
In reply to: problem to load my blogThis you will probably need to test as a connectivity issue. Can you ping the sekt-district.blogspot.com domain? You can also look at a traceroute to see how far along you get if you cant ping it.
Forum: Fixing WordPress
In reply to: Can I drop a cookie in WPWordPress has some set and clear cookie functions. Details can be found here:
http://codex.ww.wp.xz.cn/WordPress_Cookies
These will require that you modify the theme accordingly
Forum: Fixing WordPress
In reply to: Blog has disappeared!If the dns was updated, the propagation is typically an hour or 2, but if you updated the Name Servers for the domain a day or 2 isn’t unusual.
Forum: Fixing WordPress
In reply to: saying my user name doesn’t existThe default blog username is “admin”. Do you know the admin password? If so you can login and manage your users. If not the following page should help
http://codex.ww.wp.xz.cn/Resetting_Your_Password#Using_the_Emergency_Password_Reset_Script
Forum: Fixing WordPress
In reply to: Convert WP to static??The following page will show how to use wget to create a “mirror” of your site, but spidering it and downloading each page
http://historicalwebber.mossiso.com/converting-wordpress-to-static-html-84.html
Forum: Fixing WordPress
In reply to: Stylesheet apparently not working in IE, works in FirefoxOne thing I notice is that its loading
as a style sheet, but the headers it sends for that file are claim its an xml document. IE doesn’t parse that properly. You should be able to add
<?php header('Content-Type: text/css'); ?>To the top of your style.css.php file to correct. If that stylesheet contains the styles you’re missing that may fix the view in IE
Forum: Fixing WordPress
In reply to: Blog has disappeared!What IP should it be pointed to? When i resolve the domain I get the following IP: 188.121.46.1 and the blog shows up fine. The whois information states that it was updated today, which could be the name servers. If the name servers were recently updated it can take 24-48 hours for the new information to propagate. Id suggest having someone that can’t see the blog find out what ip it resolves to. Thats likely the problem
Forum: Fixing WordPress
In reply to: How can I make condition: if menu link’s id == current page id?you can use the is_page function and pass it just the id:
if (is_page($page->ID)){ [...]Forum: Fixing WordPress
In reply to: Can bloginfo be used to make a relative link?Relative links will be problematic if you are using permalinks. For example if you have
blog.domain.com/post/1 and you try to make a link to “wp-content/themes/yourtheme/stylesheet.css” the browser will try to load “[website_directory]/post/wp-content/themes/yourtheme/stylesheet.css”.
Is there any reason you’re trying to use relative links? Or did I misunderstand your question?
Forum: Fixing WordPress
In reply to: include only on home pageheh, wow…
just goes to show there are many ways to do things in wp
Forum: Fixing WordPress
In reply to: include only on home pageAre you referring to a php include? If so you can modify the theme so it checks the url of the page you’re on to see if its the home page. That may be a bit complicated though. You can also add something like this to your theme:
$post = $wp_query->post; if ($post->post_title == "Home"){ //any code you like }Forum: Fixing WordPress
In reply to: Global FontsYou can modify the css for the “post” class like so:
.post{ font-family: georgia; font-size: 12pt; }This can be placed in the style.css of the theme you are using
Forum: Fixing WordPress
In reply to: Directly accessing theme folder shows fatal errorActually, that won’t work. If they’re accessing the theme pages directly its not going to parse the wp-config.php. You can, however, place
@ini_set('display_errors','Off');in each of your theme files. Thats a bit intrusive though
Forum: Fixing WordPress
In reply to: Problem with partial sidebar font/formatThe
<p>tag is for paragraphs. The<ul>tag is an unordered list, and inside the unordered list are the<li>list items.You will want to look for any style that modifies the ul or li tags as well as any containers they may be in. I can’t tell without seeing the site, but it would include any classes or ids of any objects surrounding the links