luetkemj
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving image on pageYou will have to ftp into the directory. It will be in your theme folder which is in wp-content > themes > your theme.
Backup the old page.php file first. Also don’t just paste the code. Yours will be slightly different so you are using the basic idea not the code verbatim.
Forum: Fixing WordPress
In reply to: Unable to upload imagesDo you have any custom metabox uploaders in the theme? I have had custom uploaders cause this problem before because they improperly overwrote a wordpress variable that adds the image to the post.
It is likely a plugin issue if not a theme issue. Try reverting to 2011 to see if it’s the theme. If not go through your plugins and see if any of those are causing the problem.
Forum: Fixing WordPress
In reply to: Moved installation customer header & images not displayedYou can change the images in the db if you download the .sql and do a find and a replace. Likely to be much much faster. Is the theme using timthumb? It’s possible that maybe your permissions changed when you moved files to root. Or maybe your root directory has different permissions than the subdirectories.
Forum: Fixing WordPress
In reply to: Moving image on pageYou have a few css rules that are pushing it down in addition to it being wrapped in a p tag from the visual editor. I you want this on every page I would add it in the the page template itself. It should look something like this:
<div class="post"> <?php if ( have_posts() ) : <img class="post-header" src="" /> while ( have_posts() ) : the_post(); ?> <div class="post_content"> <?php the_content(); ?> </div> <?php endwhile; ?> <?php endif; ?> </div>
This will allow you to easily give that image a class that you can manipulate and avoid visual editor quirks. If you want it to be a different image on each page just use the featured image or a custom field to grab the url.
Forum: Plugins
In reply to: [SlideShowPro SC] [Plugin: SlideShowPro SC] What's ssp album number?!!!To get the album id you have to go into your SSP install and click on an album to edit it. Inside the Album information box you will see “album-x” where x is the album id number.
Forum: Fixing WordPress
In reply to: Featured Image Box missing in WPMU 3.2.1Okay so that was quick fix. It was dev site apart from my main WPMU install. Had neglected to set the media upload buttons in Network Settings as I have them on the main site.
Nothing wrong with wpmu
Forum: Fixing WordPress
In reply to: Drop Down Menu to display A-Z – Retreive Post's (not categorys)Have you tried modifying the azindex plugin to do this?
Forum: Hacks
In reply to: Having trouble with jQuery variable scope in an image upload pluginYou are awesome! Thank you so much! Such a simple fix (that I should have known). Really appreciate it!
Forum: Hacks
In reply to: Having trouble with jQuery variable scope in an image upload pluginNo that didn’t work either.
I did find this script on stackoverflow that does.
However I’m running into another problem…
I am dynamically adding form fields and if I add a new one and try to use the upload button it doesn’t work. If however I add a new field, save the post, and then use the upload button it works perfectly. Almost as though the new elements are not instantiating(?) themselves properly. This seems odd as the remove button works just fine without saving the post.Forum: Plugins
In reply to: [Yoast Breadcrumbs] Wrap each title with HTML markup?I need this exact functionality.