scotthack-1
Forum Replies Created
-
I would try Image Url
Forum: Plugins
In reply to: [Plugin: CSV Importer] Import to Custom Post Type?I am also having the same issue. I’d like to import into a custom post type, but I don’t currently see that as an option.
Forum: Fixing WordPress
In reply to: Help with template to pull custom field datat310s_,
Thanks! That moved me a step closer. I also fixed the permlink function error. Here is my current code. However, I’m trying to pull the meta_value and make that the anchor text. Right now it just says “Array” which obviously is not right. Thoughts?
<?php /* Template Name: Rest List */ ?> <?php get_header(); ?> <div id="content"> <div id="contentleft"> <ul> <?php $postslist = get_posts('numberposts=-1&order=ASC&orderby=title&meta_key=restlist'); foreach ($postslist as $post) : $customPostID = get_post_custom($post->ID); if(isset($customPostID['restlist'])) : setup_postdata($post); echo '<li><a href="' . get_permalink() . '">' . $customPostID['restlist'] . '</a></li>'; endif; endforeach; ?> </ul> </div> <?php include(TEMPLATEPATH."/sidebar_right_page.php");?> </div> <!-- The main column ends --> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: White screen after admin loginCheck to make sure your file permissions are set correctly.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Source URL for Contact form 7?BTW, did some googling and found out that the error is related to some blank spaces I probably had at the end of my file.
Forum: Plugins
In reply to: [Plugin: StatPress Reloaded] Bing to the list of search engines?You can edit the file searchengines.dat and add the line below to the list.
wp-content/plugins/statpress-reloaded/def/
Bing|www.bing.com|q|
Forum: Plugins
In reply to: [Plugin: Contact Form 7] CR & space ignored for mailed textarea, helpWhat are lines 1 line 2 etc?
Why are you not just sending tags?
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Source URL for Contact form 7?I got the same error as thebookmistress.
However, I deleted everything in the file again. Then made the tags as suggested and then reinserted all of the code and it worked.