forunner
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What's wrong? Fetching meta valuethis link should help you
look into your phpmyadmin to see where the datas you want are stored ! wp_1_posts maybe?
Forum: Fixing WordPress
In reply to: What's wrong? Fetching meta valueI don’t know
maybe you could try an SQL request?
Forum: Fixing WordPress
In reply to: What's wrong? Fetching meta value<?php if (wpfp_get_cookie()): foreach (wpfp_get_cookie() as $post_id) { echo $post_id; $email = get_post_meta($post_id, 'email', true); echo "".'$mail->AddAddress'."".'"('."$email".')"'."; "; } endif; ?>to see if your function works like you want
it should return an id
Forum: Fixing WordPress
In reply to: Custom Post Typemy edit was to suppress MY answer (because yours was better):p
Forum: Fixing WordPress
In reply to: Custom Post Typewoops edit : bad answer
Forum: Fixing WordPress
In reply to: Post to subscribers(dumb answer >>>) didn’t you forget to modify your php.ini ?
Forum: Fixing WordPress
In reply to: What's wrong? Fetching meta valueyou use $post_id into your get_post_meta.
are you sure your foreach define it correctly ? try a echo $post_id in the foreach.
in the echo, $mail->AddAddress won’t be interpreted because it’s between quotes (is that normal?)
Forum: Themes and Templates
In reply to: different background color on different pagesuse different id on each template for the body…and put all the id in the same css with different background-color?
Forum: Fixing WordPress
In reply to: Article Titles Missing from Home Pageis ” the_title() ” present in your home template (into your loop)?
Forum: Fixing WordPress
In reply to: page template and content widthyou can’t change the width of the new content area :
the white / grey background is created with this image which is repeat to stuck to the article height.
you have to modify (create a new) image to modify the background.Forum: Fixing WordPress
In reply to: content of frontpage onlyI think !
try first with a simple<?php if(is_home()) : ?> echo "if this text display, forunner si great, else, he is stupid, but in this cas, it will not display"; <?php endif; ?>Forum: Fixing WordPress
In reply to: Installing new themesIf I understand : you have to install the parent theme of your theme before
Forum: Fixing WordPress
In reply to: content of frontpage onlyyou can use a static page
or use if(is_home())
or create a home.php ==> how does it workForum: Fixing WordPress
In reply to: Downloaded 3.0 upgrade / site and login crashedtry to disable all your plugins (you just have to rename the folder wp-content/plugins and WordPress won’t find the plugins)
Forum: Fixing WordPress
In reply to: Creating a variable for meta idgood =)
(don’t forget the “resolved” )