Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   New Versions, & Updating (http://forum.bytesforall.com/forumdisplay.php?f=12)
-   -   Current state of Bugs/Fixes (http://forum.bytesforall.com/showthread.php?t=41)

Flynn Dec 14, 2008 08:42 AM

Current state of Bugs/Fixes
 
  1. FIXED: Theme looks broken (no stylesheet) in preview window in WP admin area
  2. FIXED: Option "Remove 2nd link to BFA", link doesn't got away if set to "Yes"
  3. FIXED: style.css.php: "body {padding. 0;" (typo, should be padding: 0; )
  4. FIXED: Dates starting with a number (12 Dec ..) in post info eat up parts or all of the remaining post info
  5. FIXED: Sidebars widths cannot be changed
  6. FIXED: Blog tagline in logo area wraps if wider than blog title, even if still enough room in logo area
  7. FIXED: Options with default values cannot be emptied, i.e. favicon, logo, "home" link (page menu bar) etc...
  8. FIXED: Some widget list item (the select menus for border, margin, padding) cannot be changed
  9. FIXED: "Archives" page missing (a page that lists all archive links)
  10. FIXED: Backslashes inserted into post info in some cases
  11. FIXED: Commas removed from tag lists in post info in some cases
  12. FIXED: "Catchable fatal error" on PHP 5.2
  13. FIXED: Images with caption don't auto-resize (without caption they do)
  14. FIXED: Stylesheet not found by theme in some cases (one user so far)
  15. 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

aliferste 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 !

bseppa 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!

aliferste Dec 14, 2008 11:16 AM

Hey bseppa - you got a link to your comments in the footer sorted?

bseppa Dec 16, 2008 03:30 PM

Yes. Take a look:

http://www.chinareflection.com

bseppa Dec 16, 2008 03:31 PM

You may have to look here:

http://www.chinareflection.com/2008/02/losing-face/

chris Dec 17, 2008 03:32 AM

Quote:

Originally Posted by Flynn (Post 130)
  • 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.

blogmaster2003 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.

Flynn Dec 17, 2008 03:07 PM

Quote:

Originally Posted by chris (Post 149)
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_existsdirname(__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_existsdirname(__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_HOSTDB_USERDB_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']; 
    }

}

?>


Flynn Dec 17, 2008 05:24 PM

Quote:

Originally Posted by blogmaster2003 (Post 154)
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 ?

chris Dec 17, 2008 11:22 PM

Quote:

Originally Posted by Flynn (Post 157)
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!

Flynn Dec 17, 2008 11:39 PM

Great, thanks for testing

campi Dec 19, 2008 08:41 AM

Quote:

Originally Posted by Flynn (Post 130)

*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 ???

Flynn Dec 19, 2008 09:09 AM

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...



All times are GMT -6. The time now is 05:26 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.