shopefowler
Forum Replies Created
-
Forum: Plugins
In reply to: Events Calendar – more than 1 calendar in 1 WP-installationI’d love this too if anybody’s got a way to make it work.
I used part of yyeric’s code to output the tag list in the sidebar of my page. I’m not really a programmer, so I have no idea if this is the best way to do it, but it’s working for what I need it for.
I created a new page called “tags” (id=46) with the content:
[albumtags=]Then put this code in my gallery page sidebar to output the tags as links:
Show photos of:<br /><ul class="galtags"> <? global $wpdb; $results = $wpdb->get_results('SELECT name, slug FROM wp_ngg_tags'); foreach ($results as $row) { echo "<li><a href=http://www.fathernaturelandscapes.com/nggallery/page-46/tags/"; echo $row->slug; echo ">"; echo $row->name; echo "</a> </li> "; } ?> </ul>The link in the sidebar code uses the tags page id and slug to make it work. Don’t really understand why, but there you have it.
Here’s the gallery page in action.
Here’s a more indepth explanation of what I did.Forum: Fixing WordPress
In reply to: 2.3 upgrade db error upon page editI’ve tried deleting all plugins from the server, and switching to upgraded themes to see if that was the problem. No luck.
I’m having the same problem fantasycrusader was having. Can someone help me fix it? Or tell me how to undo the upgrade?