Jackson Murphy
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] Results duplicated 4 times on results display pageI’m having that issue too…
Any solution?I’m looking for the solution to this too 🙂
I can hard-code an image in there… but I’d like to be able to use the Featured Image on the page defined as the Posts Page (in the Reading Settings)
Also Custom Fields don’t seem to work right for that page.
Forum: Plugins
In reply to: Vertically scroll rss feed plugin – no contentDid you ever solve this? I’m having the same issue
The content doesn’t show up when using the feed from the website. But when I view source, I can see the content…
http://ilevel.virtualforum.com/I can also put other RSS Feeds in there and they work just fine.
Then used the built in RSS Feed in WordPress and my sites RSS url and the feed shows up. (bottom of sidebar)
http://ilevel.virtualforum.com/?page_id=12Maybe it’s an RSS-2 issue? I don’t know…
The development server is screwy anyway. Having issues with getting forms to submit too.
*sighForum: Hacks
In reply to: Contact Form 7 & ReCaptcha Module PHP IssueYes… I have Really Simple Captcha… but this is a disability site- so they need the audio options-
I’m thinking of just buying this plugin: http://www.gravityforms.com
Forum: Fixing WordPress
In reply to: How do I get the Permalink…?Thanks Marcy-
I actually found a PHP/Wordpress programmer to help me with this- We took it a step further by adding the description and changed the color of the link when active… Here’s the code we used…
<?php $categories = get_categories('depth=1&hide_empty=false&exclude=9,18,27'); foreach ($categories as $cat) { // Gets currently selected category id. $id = get_the_ID(); $category = get_the_category($id); if($category[0]->cat_ID == $cat->cat_ID){ if(!is_page()){ $link_color = 'style="color:#007fc2;"'; } echo '<h2 ><a href="'.get_option('home').get_option('category_base').'/category/'.$cat->category_nicename.'/"' . $link_color . '>'.$cat->cat_name.'</a></h2>'; } else{ echo '<h2><a href="'.get_option('home').get_option('category_base').'/category/'.$cat->category_nicename.'/">'.$cat->cat_name.'</a></h2>'; } if ($cat->category_description != '') { echo '<p>'.$cat->category_description.'</p>'; } else{ echo '<p> </p>'; } if ($cat->category_parent != 0) { echo '<p> </p>'; } } ?>Forum: Fixing WordPress
In reply to: How do I get the Permalink…?Does anyone know how to accomplish this?
Forum: Fixing WordPress
In reply to: How do I get the Permalink…?well, i don’t know… can i get the descriptions? and format the text/lnks?
See the right side:
http://springboard.com.s75811.gridserver.com/what-we-do/This is more or less hard coded right now…
And please forgive any messed up stuff- I had to move the site from Yahoo today…Forum: Fixing WordPress
In reply to: Category list with descriptionsHow did you handle the a href?
I can’t figure out how to make the links work…http://consultspringboard.com/blog/who-we-are/
<?php $categories = get_categories('exclude=9&title_li='); foreach ($categories as $cat) { echo "<h2><a href=\"".$cat->category_nicename."\">".$cat->cat_name."</a></h2><p>".$cat->category_description."</p>"; } ?>Forum: Fixing WordPress
In reply to: Trouble with some linksShould I use BASE HREF? Or a .htaccess rewrite? or do something with Permalinks? Any one have any ideas?