jokkesvin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 2.5 upgrade: Database encoding serious problemsstlytm –> As far as I know you shouldn’t do anything to wp-config.php. It contains the login-info to the database. If you move the site, then you might have to change this file. I’m not sure though.
Forum: Fixing WordPress
In reply to: Import (lots of) images into WordPress 2.5 Media LibraryHi. Is it possible to put a custom time & date stamps on the images you upload through the Add From Server plug-in?
I have some images outside the new folder structure (in the root of “uploads”). I would like them to be in the right folder, which would be: “uploads/2006/01” and not be uploaded to the current date & time.
Anyone?
Forum: Fixing WordPress
In reply to: WP 2.5 Media Library and old filesForum: Fixing WordPress
In reply to: WP 2.5 Media Library and old filesSame issue. Here’s an example:
I have a lot of images in the root of the Uploads folder, but only images that are inside the new upload structure: wp-content/uploads/2008/current month will appear in the Media Library. Darn ??
I tried to manually create a folder for 2006 and a subfolder for january (01). Then via Dreamweaver I uploaded an image, but it didn’t show up in Media Library.
What to do? I would really love to clean up the root of my uploads folder.
Help.
I get the same error inside the control panel when I browse my uploaded images. Why? Running 2.5 now, but I also had the issue before upgrading. Anyone?
Forum: Fixing WordPress
In reply to: WordPress 2.5 upgrade: Database encoding serious problemsphnk –> You’re awesome man! This was also the solution to MY problem ?? I’m from Denmark, and after upgrading to 2.5, all danish characters were substituted with wrong ones. Putting // in front fixed this. I wonder why though?
Forum: Fixing WordPress
In reply to: Edit the default calendar widgetThanks a lot whooami, I didn’t notice the link you posted in my other thread until now (https://www.wingrep.com). Well I’m on a Mac, so I have the ability to search inside docs without the use of 3rd party software. But thanks anyway.
And I don’t mean to come to these forums with an attitude, so please don’t give ME one… For your information, I’ve been sweating over my custom blog design for EVER now, and I only come to this forum when I’m absolutely STUCK with something.
Forum: Fixing WordPress
In reply to: Edit the default calendar widgetBut if it’s not Template-functions-general.php what file could it be? I’m sure somebody know this?
Please help me out.
Forum: Fixing WordPress
In reply to: Edit the default calendar widgetI still haven’t figured it out ??
Forum: Installing WordPress
In reply to: CHanging CSS HeadingsHmm, try changing the font-size of the following:
h3 { font-size: 1.5em; padding: 0; margin: 30px 0 0; }
Forum: Installing WordPress
In reply to: CHanging CSS Headings1) Locate the style.css in the theme you downloaded
2) In that file, search for something that might refer to the heading of the post (“postheadline” or something like that).
3) change “font-size” to a smaller number ??
Forum: Fixing WordPress
In reply to: Edit “Calendar” Function? Where is the code for the Calendar?Nothing happens to my calendar at all when I alter code in the Template-functions-general.php. That doesn’t make any sense. I’ve removed huge chunks of code just to test, but nothing happens.
Why?
I still want to change the default wp-calendar, but I don’t know where to begin.
Any advice would be great!
Forum: Fixing WordPress
In reply to: Edit “Calendar” Function? Where is the code for the Calendar?I just found this code in Template-functions-general.php. Maybe I have to change something here?
<tfoot> <tr>'; if ( $previous ) { echo "\n\t\t".'<td abbr="' . $month[zeroise($previous->month, 2)] . '" colspan="3" id="prev"><a href="' . get_month_link($previous->year, $previous->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $month[zeroise($previous->month, 2)], date('Y', mktime(0, 0 , 0, $previous->month, 1, $previous->year))) . '">« ' . $month_abbrev[$month[zeroise($previous->month, 2)]] . '</a></td>'; } else { echo "\n\t\t".'<td colspan="3" id="prev" class="pad"> </td>'; } echo "\n\t\t".'<td class="pad"> </td>'; if ( $next ) { echo "\n\t\t".'<td abbr="' . $month[zeroise($next->month, 2)] . '" colspan="3" id="next"><a href="' . get_month_link($next->year, $next->month) . '" title="' . sprintf(__('View posts for %1$s %2$s'), $month[zeroise($next->month, 2)], date('Y', mktime(0, 0 , 0, $next->month, 1, $next->year))) . '">' . $month_abbrev[$month[zeroise($next->month, 2)]] . ' »</a></td>'; } else { echo "\n\t\t".'<td colspan="3" id="next" class="pad"> </td>'; } echo ' </tr> </tfoot>
“tfoot” probably refers to the foot of the calendar, but I tried moving this piece of code ABOVE the “thead” part, but nothing really happened.
What am I doing wrong here?
Forum: Fixing WordPress
In reply to: Edit “Calendar” Function? Where is the code for the Calendar?Adding CSS does not require editing the core code. Just add whatever CSS you want to your theme’s style.css file.
Ok, but say you’d like to change the position of the links at the bottom (previous and next month) to be at the top of the calendar next to the title of the month, how would you on do this? Template-functions-general.php is just so massive, I wouldn’t now where to begin :s And it kind of sucks to alter the core code. I’d rather edit the template somehow.
Any advice?
Forum: Fixing WordPress
In reply to: Customize wp-calendar, how?whooami –> Thanks but I did come across that file. There must be an easier way to customize the calendar?
And what do you mean by “I recommend this, so that you might do these sorts of investigative things yourself”?