henigushi
Forum Replies Created
-
An interesting development. I read on another site about someone having similar problems with PDF files appearing, and a guy who responded said it might be related to an old Adobe Shockwave or Flash plugin. I updated both, and now something interesting happens: I see the login for Google Docs appear on your site. When I try to login, though, I still get the same error message. Any ideas?
Hi Kevin,
Wow, you’re efficient. I’m seeing the same error on the link to your site. If it matters, I’m on MBP running Snow Leopard. Error occurs with both Firefox and Safari and using different networks to access the Internet. And really, I don’t know if any of that matters!
Forum: Plugins
In reply to: Is tabbed-widgets compatible with WP 2.7…???Hi everybody. For anyone still pondering this, there is a fantastic guide here:
I used it to create all sorts of tabbed widgets on my site. One thing to remember is that if you use more than one set of tabs on a page, you need to add the tabset names to your sprinkle.js file. This will make more sense if you check out the tutorial, of course. I have three sets of tabs on my page (each with three or four tabs), and so my sprinkle.js file looks like this:
$(document).ready(function() { $('#recentposts> ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } }); $('#archives > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } }); $('#featuredvid > ul').tabs(); });Hope that helps. It made it very easy for me!
Forum: Themes and Templates
In reply to: query_posts – show post only if cat=1 _and_ cat=2I’ve got a related issue. I have two main categories “Videos” and “Podcasts” and a third category “Language” with a number of child categories that represent these topics (e.g., “English”, “Spanish”, “Italian”). What I’m trying to do is have a submenu under each of the two main categories, kind of like this (the number in parentheses is the number of posts available in that category):
VIDEOS
English (5)
Spanish (2)
Italian (5)and, separately
PODCASTS
English (17)
Russian (3)I imagine you use something similar to the above, but with wp_list_categories. I’ve tried to configure this in various ways with no luck. I always get a list of all categories for which there is at least one post with a count of posts per category.
Any ideas?
Forum: Plugins
In reply to: Is tabbed-widgets compatible with WP 2.7…???I’m using 2.7 and successfully installed the widget. The settings page appears as it should, and I am able to set up and save a tabbed widget.
The problem is the display: all tabs are expanded, and clicking on any of the tab headers does not collapse them. This is true both in tab mode and accordion mode.
Any thoughts?
Forum: Fixing WordPress
In reply to: Blank screen follows ANY change on an admin pageI suspect that this might have something to do with an incompatible theme. I removed all themes from my themes folder (except for the default themes that come with 2.7) and the admin pages have reappeared.
Forum: Plugins
In reply to: [Plugin: PHP Code Widget] PHP echo Custom FieldHi Otto,
I’m using your plugin to make the latest post for a certain category appear in my sidebar, and it works great.
I am having a style problem, however. I have two widgets in my sidebar. One is yours, with the following code:
<?php $recent = new WP_Query("cat=351&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b> <?php the_content(__('Read the story »'));?><div style="clear:both;"></div> <?php endwhile; ?>The second is a text widget with two sentences in it.
My stylesheet separates widgets into blocks, all separated by a gray border. Your plugin, however, combines the content of both widgets into a single block.
Is there a way to break them up? I’ve used <div> tags for both, without success.
Thanks!
Forum: Plugins
In reply to: [Plugin: User Photo] User-Photo in the loop…I’m trying to get style values into the img call so I can have an author thumbnail float next to a post. Without userphoto I do this:
<img style="float:left;margin:0px 5px 10px 0px;" src="<?php bloginfo('template_url'); ?>/images/thumbnail.jpg" alt="Default Thumbnail" />I would like to get
style="float:left;margin:0px 5px 10px 0px;"into the img code created via<?php userphoto_the_author_thumbnail(); ?>but can’t figure out how to do it (other than hacking the plugin, which I’d prefer not to do).I know this is probably simple stuff, but I’m a newbie.
Thanks!
Forum: Fixing WordPress
In reply to: [Plugin: FreshPost] Apostrophe catastrophe!Thank you so much – it works fine now!
Forum: Fixing WordPress
In reply to: Have comments shown on main index pagehi hal9000,
you might also find this helpful
<?php $withcomments = true; comments_template();?>
Forum: Themes and Templates
In reply to: How to put comments on the main (index.php) page?You can also combine ellagray’s lines:
<?php $withcomments = true; comments_template();?>Forum: Plugins
In reply to: Poll or survey plugin??I’m having SurveyGizmo troubles as well. Activating the plugin and entering the API key both work fine. I get the following error message when I try to use it:
“Sadly you’re installation of PHP does not meet the requirements to run this plug-in. Specifically:
* You do not have DOM or DOMXML extensions (we need one of those)”My host’s PHP installation is 4.4.4, which I understand to have DOM/DOMXML built-in.
Any thoughts on what to do?
Thanks!