Tag Info

New answers tagged

0

solution for your problem 1.This css code conflict with your css ( for paypal button ) #widgets .textwidget a { display: inline; } and #widgets a { display: inline-block; margin: 0; padding: 0; text-decoration: none; } 2.put !important in display property a.paypalButton { display: block!important; width: 207px; height: 44px; ...


1

I highly recommand you to see this link. This will help you to respect coding standards in WP. EDIT : add link I give in comments


0

I have no experience with this plugin, but it looks like you can add extra template variables with a filter named 'wpbe_tags': function template_vars_replacement( $template ) { $to_replace = array( 'blog_url' => get_option('siteurl'), 'home_url' => get_option('home'), 'blog_name' ...


1

When you get those "headers already sent" messages, it is usually one of several things: You are echoing something when you shouldn't be, which is any time before get_header on the front end. I can't remember exactly where the window is on the backend. You are doing something that is triggering a warning or notice that is printing content too soon. Things ...


0

You have to edit your single.php for a full width design in your post view, is the single.php is responsible showing your post details. Suppose, if your single.php looks like this: +---------------------+ | | +--------------+------+ | | | | | | | | | | | | | ...


1

The HTML is stripped by wp_filter_kses(). So this should work: remove_filter( 'pre_term_description', 'wp_filter_kses' ); When you want to print that content, use wpautop(): echo wpautop( term_description() );


0

You can use the timthumb for resize your images as you want. if ( has_post_thumbnail() ) { // get the src of the large size featured image $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large' ); $thumbnailSrc = $src[0]; // output image resized with ...


1

For those who debug "not working" datepicker - for me it was an issue of my reset css, specifically of this: html, body { overflow: auto; } My datepicker was alright, but kept appearing on far top of the screen. :)


0

The answer of Alexander Poslavsky is correct. But i would like to say that at the bottom left of every page of simonsays websites has a ?> echo'd. I think that is not the meaning.



Top 50 recent answers are included