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 » Old Version fixes and change logs »

Changelog 3.2 -> 3.3


  #1  
Old Feb 5, 2009, 12:03 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Atahualpa 3.3 is available here http://wordpress.bytesforall.com/?p=68

Changelog 3.2 -> 3.3
  • DONE: Language files not included anymore. Download Atahualpa translations here at the forum. For Translators: New atahualpa.pot included in 3.3.
  • DONE: Add additional option ASC/DESC ordering to category menu bar
  • DONE: Add option to include category description in category menu bar link text
  • DONE: Include jQuery through WordPress, not directly, so it won't be loaded twice if a plugin loads it as well.
  • DONE: Author comment highlighting cannot be changed for child levels. Add div.bypostauthor to li.bypostauthor. See http://forum.bytesforall.com/showthread.php?t=202
  • DONE: Child comment container too close to parent comment if parent comment text is short
  • DONE: 2nd level comments not indented. This was on purpose to save horizontal space in case there are many comment levels but it may be more ergonomic to indent the 2nd level comments, too, (instead of just the 3rd + levels) so they can be better distinguished from top level comments.
  • DONE: Using %author-linked% in post info items links to 404 page if author nice name and login name are different. For a temporary fix in 3.2 see http://forum.bytesforall.com/showthread.php?t=203
  • DONE: Plugin Page2Cat displays empty string "Archives for the '' Category" on top of archive pages, author pages... . See http://forum.bytesforall.com/showthread.php?t=177 post #9 for a temporary fix in your version 3.2
  • DONE: Turn low level functions, i.e. "post info items", into higher level, standard WP functions to allow plugins to hook into them: Better compatibility with plugins, better maintainable and understandable, may be slightly less flexible but still. Note: all this is done under the hood, the post info items can be used as before.
  • DONE: Localize default terms in theme options ("Home", "Categories", "Tags"...) so that translated versions are 100% translated on the frontend
  • DONE: Remove left border of page and category menu bar. It adds up to a 2px double border with the left border of the first menu tab on the left side.
  • DONE / could not replicate this: Turn off the warning messages if no header images are found in /atahualpa/images/header (with program logic, not by suppressing the warnings)
  • DONE: Check for is_front_page availability in header.php and footer.php. Check in WP 2.2 and 2.3.
  • DONE: Post info item %trackback% not working, %trackback-linked% not listed. Check all post info items again.
  • DONE: Add post info item "permalink URL of post", %custom-field('field-name')%, author descriptions and a dozen others PLUS: PHP can be used in Post Info Items
  • DONE: PHP can be used in Footer -> Footer: Content
  • DONE: W3C validity when min-width and/or max-width is used for layout.
  • DONE: Print Style: Content crammed into left column when printing a page
  • DONE: Fix loginout in footer.php for new WP 2.7 (wpnonce)
  • DONE: Option to have different styles for headlines on post vs pages ( see next list item )
  • DONE: Add option to not show the page headline in the body copy of individual or all "Page" pages. ( possible now with CSS Insert div#post-106 div.post-headline {display:none;}, see next list item )
  • DONE: Let Wordpress add the whole range of classes and ID's to posts and pages so individual posts/pages can be styled differently without file edits PLUS: each <body> gets ID and classes now = individual styling for each page possible
  • DONE: Add default Wordpress classes back to Page and Category Menu Bar items, for additional styling possibilities, i.e. giving a certain menu tab a specific color etc.
  • DONE: Cut down from 6-7 get_option loops to 1. Move "figure out sidebars" routine from both header.php and footer.php (= 2x) into index.php (= 1x). This saves about 0.1 seconds on a fast hosting account, default Hello World install, no plugins.
  • DONE: HMTL tags inside content of next/prev navigation text and more link not working, remove function bfa_escape http://forum.bytesforall.com/showthread.php?t=603
  • DONE: Change ".sticky" to "div.sticky" in header.php. ".sticky" alone not able to overwrite the default post style "div.post".
  #2  
Old Feb 6, 2009, 09:48 AM
teddybear
 
7 posts · Jan 2009
Dear Flyn,

Seems like most of the texts entered in the Theme's option pages don't go through the get_e() function before being printed on the screen? Thus, it can't be fully internationalized. Some ex. like the "Home" for the Homepage link, the "Post" text for the Subscribe to POSTS item in the top right corner? Can you please take a look at this?
  #3  
Old Feb 6, 2009, 10:05 AM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
That's right, I'll have to localize the default terms for the theme options as well in a later version. Right now those terms would have to be changed by the user.
  #4  
Old Feb 7, 2009, 02:55 PM
HalfWayThere
 
25 posts · Feb 2009
Thanks for the additional flexibilty in Posts or Excerpts re: the homepage.

If you could also allow for showing just the latest full post on the homepage and no excerpts at all, I should find that useful if it can be done?
  #5  
Old Feb 12, 2009, 10:47 PM
Flur
 
29 posts · Dec 2008
Is there a workaround for the image resizing issue? I have a fixed width blog and it's resizing my images to be smaller than I'd like...

Thanks,

Keri
  #6  
Old Feb 13, 2009, 07:32 AM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Quote:
Originally Posted by Flur
Is there a workaround for the image resizing issue? I have a fixed width blog and it's resizing my images to be smaller than I'd like...

Thanks,

Keri
That problem should be gone or much smaller now because in newer versions (incl your 3.1.8) only "full-size images inserted through WP" are being resized. In your situation (fixed width, no borders around images) you could, in style.css around line 1420, change this

HTML Code:
.post img.size-full {
    /*max-width: 100% auto;*/
    max-width: 96%;
to

HTML Code:
.post img.size-full {
    /*max-width: 100% auto;*/
    max-width: 100%;
(that'll give you back the 4% that you seem to be missing)

or

HTML Code:
.post img.size-full {

(turn off image resizing altogether)
  #7  
Old Feb 13, 2009, 04:48 PM
Flur
 
29 posts · Dec 2008
This fixed my issue. Thanks!
  #8  
Old Feb 22, 2009, 03:48 AM
chris's Avatar
chris
 
39 posts · Dec 2008
essen@nrw.de
Could you add a optional "twitter" button to the top (where rss feeds are located as a button).

A possibility to add the twitter name in dashboard and if it is set then add a "add to twitter" button their?
  #9  
Old Mar 15, 2009, 04:30 PM
bpbaker
 
23 posts · Dec 2008
Whitstable, Kent, England.
Hi Flynn

With the work you are doing with the Menu in regard to alignment and styling, does this mean we will get separate options for the border on buttons?

I had a need for a menu with just side borders but the present option just toggles between all borders on or off.

I really don't want to go into editing css or php because I will be passing the site on to someone who won't have this capability. It maybe that no-one else feels this would be useful, in which case don't worry.

Thank-you
  #10  
Old Mar 16, 2009, 04:55 AM
ovizii
 
16 posts · Feb 2009
may I suggest some more changes for the next version?

- exchange the usage of get_option('home') with bloginfo so that translation plugins don't linked back to the default language, for explanation see here: http://www.qianqin.de/qtranslate/for...3&p=1404#p1404
- make an option to hide the header, i.e. I use the logo part of atahualpa but don't want those headers, neither changing nor shuffling
- if you set a static page to show as the frontpage I don't want to have its title displayed, looks pretty stupid to have "HOME" showing on the frontpage and also can it be avoided to show: comments are closed on the page selected as a frontapge?
- is it possible for you to integrate this plugin into your functions.php or else just support it without me having to manually hack files of atahualpa? its the most useful plugin I found in a while (btw. this function will be integrated in wp 2.8 as far as I know) http://www.alistercameron.com/2007/0...in-classybody/

I'd appreciate an answer to these suggestion :-) and thx for the great theme
  #11  
Old Mar 17, 2009, 04:52 AM
aeleven
 
1 posts · Mar 2009
Custom Fields
%trackback%
I am waiting so long.

thx Flynn~~

what about the ad area?

i come form china~

Last edited by aeleven; Mar 17, 2009 at 08:15 PM.
  #12  
Old Mar 19, 2009, 08:43 AM
paulae's Avatar
paulae
 
1,333 posts · Feb 2009
Wordpress 3.4.1, Atahualpa 3.7.7
Flynn, I would love to have built-in what I've been tweaking, with your help and with plugins.
  • Option to have logo, ad banner and image in one row
  • Option to have unique sidebars appear on only certain categories or pages.
  • I'll think of more later! Thanks for a wonderful theme.
  #13  
Old Mar 20, 2009, 07:38 AM
wfzimmerman
 
3 posts · Mar 2009
[Add option for HTML bullet lists and graphics as list-item markers inside widgets]

This would be a big help. I don't care for the gray box bullets.
  #14  
Old Mar 20, 2009, 09:45 PM
ciolo
 
12 posts · Mar 2009
It would be very nice to have the category and page toolbars merged with all the important links in it, pages or category items. Also the option to include static html pages or external links into the toolbar.
  #15  
Old Mar 22, 2009, 10:37 PM
djmom70
 
14 posts · Mar 2009
some sort of save style option so that you can name your customizations and have a couple of different ones to use.
  #16  
Old Mar 27, 2009, 03:47 PM
c32v
 
19 posts · Feb 2009
Hello Flynn!
Congratulations, you make a great job!
I'm still testing in localhost atahualpa 3.2.
Can You tell me approximately when it will be ready atahualpa 3.2.1?
I want to publish my site on the server with the new theme.
Thank You!
  #17  
Old Mar 27, 2009, 07:17 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Definitely this weekend. I want to get this out of the door no matter what
  #18  
Old Mar 28, 2009, 03:44 AM
Ramoonus
 
4 posts · Feb 2009
Quote:
Originally Posted by Flynn
Definitely this weekend. I want to get this out of the door no matter what
yeeha!
i can`t wait
  #19  
Old Mar 29, 2009, 02:07 AM
c32v
 
19 posts · Feb 2009
Hello Flynn!
Is there a way to add tags in page pages?
I would like static pages to be as SEO friendly as articles.
Thanks!
  #20  
Old Mar 29, 2009, 10:46 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Quote:
Originally Posted by ovizii
may I suggest some more changes for the next version?

- exchange the usage of get_option('home') with bloginfo so that translation plugins don't linked back to the default language, for explanation see here: http://www.qianqin.de/qtranslate/for...3&p=1404#p1404
- make an option to hide the header, i.e. I use the logo part of atahualpa but don't want those headers, neither changing nor shuffling
- if you set a static page to show as the frontpage I don't want to have its title displayed, looks pretty stupid to have "HOME" showing on the frontpage and also can it be avoided to show: comments are closed on the page selected as a frontapge?
- is it possible for you to integrate this plugin into your functions.php or else just support it without me having to manually hack files of atahualpa? its the most useful plugin I found in a while (btw. this function will be integrated in wp 2.8 as far as I know) http://www.alistercameron.com/2007/0...in-classybody/

I'd appreciate an answer to these suggestion :-) and thx for the great theme
I planned something similar but it makes more sense to put ID and classes on the body instead of single items as I had planned. ID and classes for the body are now included in 3.3 which is available now
  #21  
Old Mar 30, 2009, 04:44 AM
kkk
 
5 posts · Mar 2009
Thanks for the nice theme. Some suggestions to make theme even better (may be for the next version). If those are already there please share.

1. Home page should have option of putting feature post,category wise post-excerpt,tabbed post block.

2. Post image thumbnail should work by default.

3. Tabbed widget in sidebar.

4. Ability to post adsense code,advertising banner.

All those things can be done by some changes in the codes but for a newbie its a pain.

Thanks anyway for the nice theme.
  #22  
Old Mar 30, 2009, 04:58 AM
PAS's Avatar
PAS
 
7 posts · Feb 2009
Cape Cod, USA
How do I update without losing my current settings , graphics, colors, etc.? I am using version 3.2. I love your theme, it is by far the best theme I have ever used, and will be using it on all of my blogs. I just do not want to lose my current settings. Any help would be appreciated.

Paul

Last edited by PAS; Mar 30, 2009 at 08:55 AM.
  #23  
Old Mar 30, 2009, 08:28 AM
Craig Atkinson's Avatar
Craig Atkinson
 
53 posts · Mar 2009
news.caferoyal.org
The images in my posts seem to have lost the ability to resize properly - the width does but not the height, stretching them all. Hm. Also the Page titles don't link properly anymore.

Last edited by Craig Atkinson; Mar 30, 2009 at 09:28 AM.
  #24  
Old Mar 30, 2009, 10:25 AM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Quote:
Originally Posted by Craig Atkinson
news.caferoyal.org
The images in my posts seem to have lost the ability to resize properly - the width does but not the height, stretching them all. Hm. Also the Page titles don't link properly anymore.
You're right, thanks for pointing this out.

I released version 3.3.1 here http://wordpress.bytesforall.com/
  #25  
Old Mar 31, 2009, 12:18 AM
JeromeR
 
3 posts · Mar 2009
Lightbulb Can Atahualpa fix Firefox fonts?

Something that bothers me: my Atahualpa site looks wonderful in Internet Explorer 7, but in Firefox the fonts look [awful*] on various screens. I Googled for a solution, and found the suggestion to enable ClearType, but that does nothing noticeable. If this is this something that Atahualpa could fix, I would be delighted, because Firefox users are out there, in large numbers.

* I initially wrote something rude. But really. I kept hearing that Firefox is so great. 'T ain't so!

Last edited by JeromeR; Mar 31, 2009 at 12:19 AM. Reason: Improved the clarity; added title

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changelog 3.4/3.4.01 -> 3.4.1 Flynn Old Version fixes and change logs 8 Jan 24, 2010 09:55 AM
Changelog 3.3.3 -> 3.4 Flynn Old Version fixes and change logs 20 Jul 29, 2009 05:05 PM
Changelog 3.3.1 -> 3.3.2 Flynn Old Version fixes and change logs 2 Apr 22, 2009 05:09 PM
Changelog 3.3 -> 3.3.1 Flynn Old Version fixes and change logs 13 Mar 31, 2009 01:37 PM
Changelog 3.1.8/3.1.9 -> 3.2 Flynn Old Version fixes and change logs 29 Feb 14, 2009 11:49 AM


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


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