smartyd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Suffusion: does not change lead photoI changed it to “image specified in thumbnail…” and STILL no change.
Forum: Themes and Templates
In reply to: Suffusion: does not change lead photoI have “first image in post” selected. So many overrides, and nothing is working.
Forum: Themes and Templates
In reply to: Suffusion: does not change lead photoWell, I deleted the offending image and have the image I want plugged into the thumbnail option, but now a new image gets chosen for the tile thumbnail (the last image in my post).
WHAT is going on???
Please help!Forum: Themes and Templates
In reply to: Suffusion: does not change lead photoIt used to be the lead image, but I placed it at the end of the post and put in a new lead image. Thought it would automatically switch. I’ll try to delete the offending image and reload it…
Forum: Themes and Templates
In reply to: Suffusion: does not change lead photoThis is the URL I have in the thumbnail option:
http://www.diypics.com/upquark/wp-content/uploads/2011/05/yogurt-probiotic-1-160×160.png
But it ain’t showing.
???Forum: Themes and Templates
In reply to: Suffusion: does not change lead photomy images are in png format. Do they have to be in jpg or something?
Forum: Themes and Templates
In reply to: Suffusion: does not change lead photoI tried both those option. I have both “thumbnail” and “Featured” clicked with the url for the image I want, but it’s not showing up in either the tile thumbnail. I am using the url for the uploaded image. What is the url for the thumb of that image?
ThanksForum: Themes and Templates
In reply to: Arras Theme – Use Featured Image ONLY On The Homepage?Two ways to deal with this: deselect the “show excerpt” in the Arras layout options. Also, instead of uploading two images, which not change the shape of the node to a square? Go into thumbnail options to do this.
I’m still playing with the layout of mine site… diypics.comForum: Fixing WordPress
In reply to: Suffusion: annoying navigation popupHm. I don’t know where the code would have title tags, as the tabs are taken from the titles of the respective pages (this menu is just a list of all the site pages), and these are text only (no html tags). Where in the Suffusion code would I find title tags to remove from the Page titles?
ThanksForum: Fixing WordPress
In reply to: Suffusion: annoying navigation popupI mean the menu that drops down from Books. If you hover over any of the books in the dropdown, a second light gray popup of that book appears and blocks the tab. Can’t get rid of it. Argh!
Forum: Themes and Templates
In reply to: 3.6.6 suffusion theme or zip files seems defectiiveThere is no admin.css in mine. And the save buttons don’t show up anywhere. It doesn’t tell me anywhere what version of Suffusion I’m using, but I downloaded it last week, so it should be the latest.
ThanksForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Unusually High Server LoadsFolks, there may be a much easier way to do what you’re trying to do. Check out http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/ to see what I mean.
I’m using this CSS for all kinds of pop-ups, as you can see in two of my blogs:
On this page I have text that mouses-over into a large image. You can use a thumbnail image instead of text.
And on this page, I use the same CSS for text pop-ups as well.
Very clean. Haven’t had issues with overload.Forum: Fixing WordPress
In reply to: Show overflow from postOK, so a preview of a draft post doesn’t show. Can anyone guess what I’m asking and know the answer? (I don’t want to publish the post before it’s in working condition)
ThanksForum: Fixing WordPress
In reply to: Music in PostUgh. I took it out cuz it was messy. Would still like to know how to put background music into a post.
THanksForum: Plugins
In reply to: [Plugin: WordPress Video] validation errorRESOLVED. Borrowed from the google_video code to achieve the final code for youtube (no CSS needed):
define("YOUTUBE_WIDTH", 260); define("YOUTUBE_HEIGHT", 200); define("YOUTUBE_REGEXP", "/\[youtube (:print:+)\]/"); define("YOUTUBE_TARGET", "<object type=\"application/x-shockwave-flash\" data=\"http://www.youtube.com/v/###URL###&border=1&color1=0x2b405b&color2=0x6b8ab6\" width=\"".YOUTUBE_WIDTH."\" height=\"".YOUTUBE_HEIGHT."\" ><param name=\"movie\" value=\"http://www.youtube.com/v/###URL###&border=1&color1=0x2b405b&color2=0x6b8ab6\" /></object>"); function youtube_plugin_callback($match) { $tag_parts = explode(" ", rtrim($match[0], "]")); $output = YOUTUBE_TARGET; $output = str_replace("###URL###", $tag_parts[1], $output); return ($output); } function youtube_plugin($content) { return (preg_replace_callback(YOUTUBE_REGEXP, 'youtube_plugin_callback', $content)); } add_filter('the_content', 'youtube_plugin',1); add_filter('the_content_rss', 'youtube_plugin'); add_filter('comment_text', 'youtube_plugin'); ?>