roburdick
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to remove exif data?If you use firebug with firefox, you should be able to find the CSS rule, then you can add the the ‘display:none’ line. There is probably a way of deleting some of the php code in the index.php (or whatever template file you might be using, index is the default i believe) Hope that helps.
Forum: Fixing WordPress
In reply to: Google checkout button only works in the sidebarWould this have something to do with “Google Checkout API callback URL”. I don’t have SSL
Forum: Plugins
In reply to: [Plugin: Shoppe] Feedback on using Shopp pluginHello,
I am also thinking of getting Shopp plugin. I have tried wp-ecommerce, and although it looks promising, it seems quite buggy and prevented me doing vital things like using google checkout.
Is Shopp as stable as I have heard!?
Forum: Fixing WordPress
In reply to: Google checkout button only works in the sidebarmy url is http://www.baconwizard.co.uk
Forum: Fixing WordPress
In reply to: how to remove exif data?Hi stephenjames716,
i wanted to do the same thing, an easy way i just found is to set the display to ‘none’ in css instead of ‘block’:
‘
.attachment-link {
display:none;
}
‘Forum: Fixing WordPress
In reply to: “Recent Posts” widget/box not showing up on index page?I am having the same problem using the YD Recent Posts Widget.
http://www.robertburdick.com/blog/
Any help would be much appreciated
Forum: Themes and Templates
In reply to: Using .swf in header.php file of themeI used this code from another thread:
<object codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0″ title=”navigation” width=”118″ height=”118″>
<param name=”movie” value=”http://www.robertburdick.com/wordpress/wp-content/themes/lust/images/flash-analog-clock.swf”/>
<param name=”quality” value=”high” />
<embed src=”http://www.robertburdick.com/wordpress/wp-content/themes/lust/images/flash-analog-clock.swf” quality=”high” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”118″ height=”118″ > </embed>
</object>