forunner
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog Not Found, White Screen on Dashboardgreat =)
Forum: Fixing WordPress
In reply to: Help doing multiple projectsdid you try serv_ip/phpmyadmin ?
Forum: Fixing WordPress
In reply to: Creating a variable for meta idI’m not sur to understand the problem [good explanation, but I’m french]
If I understand :
try this<?php $variable = get('dynamic-meta-page-id'); query_posts('page_id='.$variable); ?>Forum: Fixing WordPress
In reply to: WordPress Post MetadataI think you can do that with wp_query, but I don’t know how
personnally, I use SQL request to display these informations :You have to select the post_id FROM wp_1_postmeta WHERE meta_key = “name_of_your_custom” AND meta_value = “social”
and display the… I don’t know what you want, the link?
SELECT post-name FROM wp_1_posts WHERE ID = value_find_in_the_other_requestthe post-name is the end of the url ^^
I know it’s not a good solution, but…it’s a solution
Forum: Fixing WordPress
In reply to: Aligning Site Name & Logotry this :
give an id to your img
in your css, put a float left on this id and on .logo
Forum: Themes and Templates
In reply to: Remove the Header Image background place holderhey, try to not double post on different place next time 😉
if someone has the same problem, the answer is here
Forum: Fixing WordPress
In reply to: Blog Not Found, White Screen on Dashboardadvise find on the french WordPress forum
try to disable all your plugins (you just have to rename the folder wp-content/plugins and WordPress won’t find the plugins)
their next advise concern the “white page caused by update” so I will not tranlate it lol
and their last is to re-install WordPress : download, unzip, and transfer to the ftp [the problem was partially solved for the french user, and their is no post after this]Forum: Fixing WordPress
In reply to: Remove Header Image and Image Place Holdergood =)
Forum: Fixing WordPress
In reply to: I want to decrease top margin in twenty ten themeIf I have understand what you want :
in your style :.home{ margin-top : -100px; }Forum: Fixing WordPress
In reply to: Remove Header Image and Image Place Holderto remove the image header, you have to remove the line 65 of the header.php
<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />Forum: Fixing WordPress
In reply to: Content removedare your page in your database?
if they aren’t, you can try a ROLLBACK [I don’t think it will work, but you can test] but …
backup your db before ! you can lose some new data.Forum: Fixing WordPress
In reply to: Capital Letters In URLmaybe it’s a big mistake but I think it’s in your db wp_1_posts > post_name
Forum: Fixing WordPress
In reply to: How to align an object to bottom right corner of posts?put your block into a div and place it in your style.css :p
(if you don’t know and if your site is online, could you give us the url of the page with the adsense block?)Forum: Fixing WordPress
In reply to: Contact Form in footeryou can edit your footer using a plugin
Or you can edit it directly in your theme.
Add a contact form into the footer and it will be okForum: Fixing WordPress
In reply to: Removing the loop, possible?if you don’t want to use the loop, you just have to supress or comment the code :
while ( have_posts() && $i < $nombre_article ) : the_post() //supress or comment everything inside endwhile; ?>in yout theme ^^