edzah
Forum Replies Created
-
This worked for me. Just to clarify:
Unticking the ‘Show Captions’ box in NextGen GalleryView Settings didn’t get rid of the grey caption panel that shows the image filename (the css class for this panel is ‘panel-overview’). I looked at the shortcode on my page and noticed that one of the attributes was ‘showCaptions=false’ – if you delete this text the panel should disappear.
ed
Forum: Themes and Templates
In reply to: wp_post_thumbnail ALT and TITLE tags won't workThanks Chris
The entirety of my theme’s functions.php
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '<li>', 'after_widget' => '</li>', 'before_title' => '<div>', 'after_title' => '</div>', )); if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); } ?>so no add_filter there. Must say I have never used filters before.
Forum: Plugins
In reply to: AnyFont needs .htaccess but I am on IIS – options?Thanks for that.
Forum: Plugins
In reply to: AnyFont needs .htaccess but I am on IIS – options?Anyone had this problem before?
Forum: Fixing WordPress
In reply to: help on setting up wordpress on local serverYeah, I did this myself with WAMP and didn’t have the link problem (AFAIR)
but this is on a mac with XAMPP and I think I need to set up some mod_rewrite bs or do a search and replace on all the url strings…