ExcellentSP
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget Wrangler] Widget Preview Running ShortcodesThank you Mr. Daggerhart. That definitely helps.
Forum: Reviews
In reply to: [Widget Wrangler] Continues to blow my mind after 36 implementations.Though I do hope Mr. Daggerhart comes out with an implementation that allows for the addition of custom classes on a per widget basis…
You are a godsend…
Forum: Fixing WordPress
In reply to: How to use add_rewrite_rule() on the home page ("/")…Answered my own question:
function prefix_disable_canonical_front_page( $redirect ) { if ( is_page() && $front_page = get_option( 'page_on_front' ) ) { if ( is_page( $front_page ) ) $redirect = false; } return $redirect; } add_filter( 'redirect_canonical', 'prefix_disable_canonical_front_page' );But I still wonder if there are SEO implications.
Forum: Fixing WordPress
In reply to: Page exists in database, but not in my WordPress install.We figured it out. Just to answer your question though, it was trashed then directly afterwards, permanently deleted.
It ended up being that we had an image with the same post_name as the page slug we wanted, so we deleted the image in the WordPress dashboard and re-uploaded it with a different naming convention.
Forum: Themes and Templates
In reply to: Virtue Theme: Removing White Space Behind LogoIt seems that you have your image saved as a jpg which does not support transparency or translucency (shadows). Try switching your image format to png 24 (recommended since you have shadows on your image) or png 8 (which does not support shadows).