modern
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Roadmap - Product Feedback Board] Layout issuesThis Custom CSS seemed to fix the problem for me: .list-inline>li{display:block !important;}
I would also really like to have do_shortcode capability added for [ai1ec].
ThanksForum: Plugins
In reply to: [TDO Plugin] can't enter $ (dollars sign) in submit formI’m having the same problem.
TDO Mini Forms, Version 0.13.9. WordPress 3.2.1Forum: Fixing WordPress
In reply to: active window switches each time i work on itsame problem. removing js/eye.js seems to fix it.
also have another problem:
cannot select Transparent Background. After clicking “Update” the checkbox becomes unchecked again.Forum: Plugins
In reply to: [Plugin: Page Peel] Not working at all – no errors, no page peelI was having the same problem with pagepeel-js.php. It was in the correct location but not loading. Turns out that I needed to upgrade my server from PHP4 to PHP5. Everything works correctly since I changed to PHP5.
(Site hosted on MediaTemple Grid Service.)
Forum: Plugins
In reply to: Next Gen Gallery – Single Thumbnail for an Album?Thanks. That works for me (using Highslide JS), but it doesn’t show the 2nd thumbnail after the gallery launches. The second image is there if you click “Next”, but it would be nice if the preview thumbnail was also visible.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Add Gallery / Images << display problem on backendOk, this is really a big problem. Same thing for “Options”. Nothing displays correctly. Cannot even see the “Save Changes” button which makes NexGEN Gallery pretty much unusable.
Forum: Plugins
In reply to: WordPress.com Stats buggered since upgrading to 2.9Not working for me with WP 2.9… reporting 0 hits after 3 days.
I’m also using Analytics360 which shows that my site is getting hits.Please fix Stats for 2.9 !!
Forum: Fixing WordPress
In reply to: Page Specific Header ImagesIf you are still having problems making a distinction between the Home page and the Blog page, this might help:
https://blog.dt.org/index.php/2009/08/how-to-detect-the-front-home-page-of-a-wordpress-blog/
Forum: Fixing WordPress
In reply to: Dynamic Menus (archive categories) with current category highlighted<li class="<?php echo $highlight; ?>"><a href="<?php echo get_settings('home'); ?>">Latest News</a></li>
The code above works correctly to highlight “Latest News”, but I’d like to replace “Latest News” with a dynamic menu so that it lists all categories and only highlights the current one…. Should be something like:
<li class="<?php echo $highlight; ?>"><a href="<?php echo get_settings('home'); ?>"><?php wp_list_categories('orderby=name&title_li='); ?></a></li>
but, that doesn’t work. It lists all categories but doesn’t highlight the current one.
Forum: Fixing WordPress
In reply to: Dynamic Menus (archive categories) with current category highlightedI already have the CSS in place. The above code does change the current category title correctly. But it’s not listing the other categories…. What am I missing to make the other categories display normally?
Forum: Fixing WordPress
In reply to: 2.7 trouble: can’t upload images or edit timestamp@ppoivre
In functions.php of your theme files, at the very bottom you will find the following code which you can just comment out or delete://Remix Editor
//include(TEMPLATEPATH . “/editor/remix_advanced_editor.php”);Forum: Alpha/Beta/RC
In reply to: Multistep image upload in 2.7: yuckI managed to fix my image upload problem. For me, it was a Theme issue. I was using the WPRemix2 theme. The advanced editor for WPRemix2 was causing problems. I had to delete the code that called for the WPRemix2 advanced editor, then image uploading worked correctly.
Forum: Fixing WordPress
In reply to: 2.7 trouble: can’t upload images or edit timestampFor me, it turned out to be a Theme issue. I was using the WPRemix2 theme. I had to delete the code calling for the WPRemix2 Advanced Editor. After I did that, media uploads worked correctly.
Forum: Fixing WordPress
In reply to: How to restrict MIME-Types users can upload?Ok, here’s a real hack of a fix… In wp-admin/images/ you will find the media button images: media-button-video.gif is one of them. If you open that image in Photoshop and just delete the image and then save it as a transparent gif, then the button becomes invisible.
It’s not really a fix. You can still click on the invisible button to upload. But at least the button becomes invisible. Ha! Like I said, it’s not really a fix.
What I’d really like to find is the correct CSS file and just set that div to display:none, but I can’t find it. I’ve searched everywhere. Anyone know which CSS file it is?