croakingtoad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank Admin PanelHave you tried just reinstalling?
Forum: Fixing WordPress
In reply to: Reinstall // Upgrade@esmi is right. Just make sure you create a back up first, “just in case”. π
Forum: Fixing WordPress
In reply to: Internet Explorer Refreshment ProblemProbably IE is storing cached copies of the page to speed up your web browsing experience. Convenient eh? π
Google “remove ie caching” or something like that and you’ll probably be good to go.
Forum: Fixing WordPress
In reply to: Image managmentHi Bob,
Sounds like you’re having a frustrating time. I landed here from your other post where you were asking about a consultant.
What you’ll want to do is use the “Image” media button you reference above the toolbar. Click that image button and it’ll open up the “Upload” panel. Click the tab at the top of the pop up that says “Media Library”.
You should now see some images you have previously uploaded, but not all of them if you’ve uploaded a lot. This page is paginated so you’ll have to click through to the subsequent pages to browse them all, or you can use the search box at the top if you remember your file name or key words in your file name or description.
Once you find your image, click “Show” to the right of the thumbnail and it’ll pull up that images info. At the bottom of the info, is “Insert into post”. Click that and shazzam, your image is inserted!
Pro tip: Make sure before you start, to put the cursor into the post editor wherever you want your image to appear. π
Hope that helps. Look me up outside the forums if you need some consulting help. Cheers!
Forum: Fixing WordPress
In reply to: custom post, title & dateYou probably have applied a CSS style to the wrong element/style.
Can you provide a link for us to look at? Or post your CSS code for the line and the html code for your posts at http://wp.pastebin.com/ and post a link back here?
Forum: Plugins
In reply to: "Status" links 404ingYep, I changed that in my child theme to
<a href="<?php bloginfo( 'url' ); ?>/?ticket_status=<?php echo quality_ticket_status( $post->ID, 'slug' ); ?>/" class="ticket-status <?php echo quality_ticket_status( $post->ID, 'slug' ); ?>"><?php echo quality_ticket_status( $post->ID, 'name' ); ?></a>and now it’s working with the default permalink set up.
Forum: Plugins
In reply to: "Status" links 404ingI opened up the file loop.php and line 36 is-
<a href="<?php bloginfo( 'url' ); ?>/status/<?php echo quality_ticket_status( $post->ID, 'slug' ); ?>/" class="ticket-status <?php echo quality_ticket_status( $post->ID, 'slug' ); ?>"><?php echo quality_ticket_status( $post->ID, 'name' ); ?></a>It looks like
/status/is hard-coded in there. Correct me if I’m wrong, but that’s probably why it isn’t working, eh?Forum: Plugins
In reply to: "Status" links 404ingGave me a good reason to set the site up using SVN so I did a reinstall with SVN. Refreshed permalinks afterward but still same problem π
Forum: Plugins
In reply to: "Status" links 404ingYep, sure do. Here’s something else that might help. The dropdown menu for “Status” URIs work fine, they’re formatted like-
http://foo.com/support/?ticket_status=completed
The statuses next to each of the tickets doesn’t work, they’re formatted like-
Forum: Themes and Templates
In reply to: Show "Last Updated" in ticket meta dataAwesomesauce.
Since the people who report on my activities, etc. want real dates, I’m gonna take it easy on them and not make them do math. π
Cheers for a fantastic theme.
Check out my latest plugin – http://wordpress.org/extend/plugins/stardate/
π
Forum: Themes and Templates
In reply to: Show "Last Updated" in ticket meta dataOkay, I got it working, thanks. I’m not very adept at shortcode but here’s what I came up with.
<li> <small><?php _e( 'Created', 'quality' ); ?></small> <?php echo(date('m/d/Y',strtotime(get_the_date()))); ?> </li> <li> <small><?php _e( 'Last Updated', 'quality' ); ?></small> <?php $comment_data = get_comments("number=1&post_id=$post->ID"); foreach ($comment_data as $comm) : echo(date('m/d/Y G:i',strtotime($comm->comment_date))); endforeach; ?> </li>Forum: Plugins
In reply to: "Status" links 404ingWell, my htaccess was not writable and I also had to chown it to the account owner, but even after doing that and resaving the permalinks, it’s still not working, but I did make a bit of progress. And this is a new WP install just for this theme, so there is nothing previous.
I found that when I switched to anything other than the default permalink settings, instead of a hard apache 404, I got a soft 404 from the theme (using 404.php I assume). But when I switch to default settings, it goes back to the hard apache 404.
When the default settings are enabled, the .htaccess is blank except for the # wordpress comments…
Forum: Plugins
In reply to: "Status" links 404ingYeah, already tried that. Still having the problem. π Other advice?
I’m also having this problem. A fresh install of NAVT on WP 2.8.4 and nothing works. I have also deactivated all plugins and still nothing…?
Forum: Fixing WordPress
In reply to: [Plugin: NextGen Gallery] singlepic doesn’t embed image in pageYou’re right, I discovered the same thing last night. I have my own server so I’m going to try and adjust it but that sucks because I already loaded a ton of photos with descriptions, etc….