Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » New Versions, & Updating »

Current state of Bugs/Fixes


  #1  
Old Dec 14, 2008, 08:42 AM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
  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
  #2  
Old Dec 14, 2008, 09:41 AM
aliferste
 
19 posts · Dec 2008
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  
Old Dec 14, 2008, 10:47 AM
bseppa
 
55 posts · Dec 2008
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  
Old Dec 14, 2008, 11:16 AM
aliferste
 
19 posts · Dec 2008
Hey bseppa - you got a link to your comments in the footer sorted?
  #5  
Old Dec 16, 2008, 03:30 PM
bseppa
 
55 posts · Dec 2008
Yes. Take a look:

http://www.chinareflection.com
  #6  
Old Dec 16, 2008, 03:31 PM
bseppa
 
55 posts · Dec 2008
You may have to look here:

http://www.chinareflection.com/2008/02/losing-face/
  #7  
Old Dec 17, 2008, 03:32 AM
chris's Avatar
chris
 
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  
Old Dec 17, 2008, 12:20 PM
blogmaster2003
 
4 posts · Dec 2008
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  
Old Dec 17, 2008, 03:07 PM
Flynn's Avatar
Flynn
 
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_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']; 
    }

}

?>
  #10  
Old Dec 17, 2008, 05:24 PM
Flynn's Avatar
Flynn
 
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 ?
  #11  
Old Dec 17, 2008, 11:22 PM
chris's Avatar
chris
 
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  
Old Dec 17, 2008, 11:39 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Great, thanks for testing
  #13  
Old Dec 19, 2008, 08:41 AM
campi
 
6 posts · Dec 2008
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  
Old Dec 19, 2008, 09:09 AM
Flynn's Avatar
Flynn
 
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...


Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
upped from 3.3 to 3.4.2, went well, only minor bugs Monkey_Fist New Versions, & Updating 7 Jul 17, 2009 06:22 AM
How to make Current page color different than Hover color? 25jai Page & Category Menu Bars 7 Jul 17, 2009 05:06 AM
Color of children of current page in menu BradBrown Page & Category Menu Bars 0 Mar 22, 2009 02:38 PM
Tagline: Can I make it the current date? jockoe Header configuration & styling 3 Feb 24, 2009 01:41 PM


All times are GMT -6. The time now is 10:53 PM.


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