|
#1
Dec 14, 2008, 08:42 AM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
Current state of Bugs/Fixes
- FIXED: Theme looks broken (no stylesheet) in preview window in WP admin area
- FIXED: Option "Remove 2nd link to BFA", link doesn't got away if set to "Yes"
- FIXED: style.css.php: "body {padding. 0;" (typo, should be padding: 0; )
- FIXED: Dates starting with a number (12 Dec ..) in post info eat up parts or all of the remaining post info
- FIXED: Sidebars widths cannot be changed
- FIXED: Blog tagline in logo area wraps if wider than blog title, even if still enough room in logo area
- FIXED: Options with default values cannot be emptied, i.e. favicon, logo, "home" link (page menu bar) etc...
- FIXED: Some widget list item (the select menus for border, margin, padding) cannot be changed
- FIXED: "Archives" page missing (a page that lists all archive links)
- FIXED: Backslashes inserted into post info in some cases
- FIXED: Commas removed from tag lists in post info in some cases
- FIXED: "Catchable fatal error" on PHP 5.2
- FIXED: Images with caption don't auto-resize (without caption they do)
- FIXED: Stylesheet not found by theme in some cases (one user so far)
- FIXED: Comments link doesn't show in post info in some cases
I also added
- the new "sticky" post functionality of WP 2.7, with option to style it
- option to style widget titles, too, not just the widget title box
- a few more screenshots to the theme options
To do
- Rebuild localization file due to new options
- Check W3C validity again
- Basic tests on WP 2.2 - 2.7 and WPMU
I am releasing v. 3.1 tomorrow Dec 19th 2008
|
#2
Dec 14, 2008, 09:41 AM
|
|
Is the no links to comments in footer included ? I thought that was separate from the hashes being added?
Nice going by the way !
|
#3
Dec 14, 2008, 10:47 AM
|
|
Fantastic work Flynn! We'll keep digging for bugs. I have worked around all of them so far in an effort to understand how this thing works. Looks brilliant. Nice design - really. This must have taken a TON of time.
For everyone else out there... show your appreciation for this amazing work with a donation. He deserves it!
Thanks again!
|
#4
Dec 14, 2008, 11:16 AM
|
|
Hey bseppa - you got a link to your comments in the footer sorted?
|
#5
Dec 16, 2008, 03:30 PM
|
|
|
#6
Dec 16, 2008, 03:31 PM
|
|
|
#7
Dec 17, 2008, 03:32 AM
|
|
|
|
39 posts · Dec 2008
essen@nrw.de
|
|
Quote:
Originally Posted by Flynn
- May be fixed, user Chris will have to test: Stylesheet not found by theme in some cases (one user so far)
|
I would love to test - just send me a download or a hint what I should try.
|
#8
Dec 17, 2008, 12:20 PM
|
|
Hi
i can offer you a php5.2 space, just pm me and i will set it up for you.
I can host your domain or you can use one subdomain of oone of my domains.
|
#9
Dec 17, 2008, 05:24 PM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
Quote:
Originally Posted by blogmaster2003
Hi
i can offer you a php5.2 space, just pm me and i will set it up for you.
I can host your domain or you can use one subdomain of oone of my domains.
|
Could you try this http://forum.bytesforall.com/showthread.php?t=49 ?
|
#10
Dec 17, 2008, 03:07 PM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
Quote:
Originally Posted by chris
I would love to test - just send me a download or a hint what I should try.
|
Could you try a changed style.css.php on your web hosting accountß
Replace the top of style.css.php
PHP Code:
<?php header("Content-type: text/css"); // if this is WPMU if (file_exists( dirname(__FILE__) . '../../../../wpmu-settings.php')) { require_once( dirname(__FILE__) . '../../../../wpmu-settings.php'); } else { // if this is regular WordPress require_once( dirname(__FILE__) . '../../../../wp-config.php'); } require_once( dirname(__FILE__) . '/functions.php'); global $options; foreach ($options as $value) { if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option( $value['id'] ); } } ?>
with
PHP Code:
<?php header("Content-type: text/css");
// if this is WPMU if (file_exists( dirname(__FILE__) . '../../../../wpmu-settings.php')) { require_once( dirname(__FILE__) . '../../../../wpmu-settings.php'); } else {
// if this is regular WordPress
// find wp-config.php $d = 0; // search depth; while (!file_exists(str_repeat('../', $d) . 'wp-config.php')) if (++$d > 99) exit; $wpconfig = str_repeat('../', $d) . 'wp-config.php';
require_once $wpconfig;
foreach (explode("\n", file_get_contents($wpconfig)) as $line) { if (preg_match('/define.+?DB_|table_prefix/', $line)) eval($line); } if (defined('DB_USER')) { $dbh = @mysql_connect(DB_HOST, DB_USER, DB_PASSWORD); @mysql_select_db(DB_NAME, $dbh); $r = @mysql_query( "SELECT option_name,option_value FROM ". $table_prefix ."options WHERE option_name REGEXP '^bfa_ata_';", $dbh ); while ($a = @mysql_fetch_row($r)) { $$a[0] = $a[1]; } @mysql_free_result($r); // if theme options were available in options table if (isset($bfa_ata_widget_lists)) { $bfa_ata_widget_lists = unserialize($bfa_ata_widget_lists); $bfa_ata_widget_lists2 = unserialize($bfa_ata_widget_lists2); $bfa_ata_widget_lists3 = unserialize($bfa_ata_widget_lists3); } }
}
// get default options in case no individual options were saved to wp_options yet $d = 0; // search depth; while (!file_exists(str_repeat('../', $d) . '/wp-content/themes/atahualpa3/functions/bfa_theme_options.php')) if (++$d > 99) exit; $bfa_options = str_repeat('../', $d) . '/wp-content/themes/atahualpa3/functions/bfa_theme_options.php';
require_once $bfa_options; global $options; foreach ($options as $value) {
if ( !isset($$value['id']) ) { $$value['id'] = $value['std']; }
}
?>
|
#11
Dec 17, 2008, 11:22 PM
|
|
|
|
39 posts · Dec 2008
essen@nrw.de
|
|
Quote:
Originally Posted by Flynn
Could you try a changed style.css.php on your web hosting accountß
Replace the top of style.css.php
|
This fixed it ... thanks a lot!
|
#12
Dec 17, 2008, 11:39 PM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
Great, thanks for testing
|
#13
Dec 19, 2008, 08:41 AM
|
|
Quote:
Originally Posted by Flynn
*4 - FIXED: Dates starting with a number (12 Dec ..) in post info eat up parts or all of the remaining post info
*13 - FIXED: Images with caption don't auto-resize (without caption they do)
|
4 * The problem persist when configure the date from wordpress options. From Atahualpa options it's ok.
13 * Screenshot: http://s1.subirimagenes.com/imagen/1655130bug13.png
Firefox and IE: OK
Chrome and Safari: ??? webkit problems ???
Last edited by campi; Dec 19, 2008 at 08:48 AM.
|
#14
Dec 19, 2008, 09:09 AM
|
|
|
|
3,768 posts · Oct 2008
Munich, Germany
|
|
Can you post your image css? It seems you have changed it a bit. Not sure if that's the reason though.
Weird because it works in both Safari & Chrome for me http://wp27.bytesforall.com/?p=75
Looking into the date issue WP vs Atahualpa...
|
Thread Tools |
Search this Thread |
|
|
Display Modes |
Hybrid Mode
|
|