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)
-   -   version 3.1.2 - first impressions (http://forum.bytesforall.com/showthread.php?t=73)

John Dec 23, 2008 05:26 PM

version 3.1.2 - first impressions
 
I've upgraded to 3.1.2.
The post count in the sidebars are no longer wrapping:). From the user end everything feels the same. I am encountering a bug that seems significant. Although I have no archives page, the content of what would be an "archives page" is appearing at the bottom of the other pages (except home). I've gone as far as to reset the archives page options tab, update content on the two other pages, and finally delete and recreate the other pages. None of these steps solved the issue. Hopefully, this will be addressed soon. I can report more as I find it.
Keep up the good work! This theme has been extremely flexible and easy to work with thus far.

John

www.friedgeektomato.com

Flynn Dec 23, 2008 06:23 PM

That's weird it should show no archives page at all, an error for which I'll have to release 3.1.3 later today

Could you try change the start of index.php, this part

PHP Code:

<?php 
global $options
....
....
<?
php get_header(); ?>

to this

PHP Code:

<?php 
global $options
foreach (
$options as $value) { 
    if (
get_option$value['id'] ) === FALSE) { 
        $
$value['id'] = $value['std']; 
    } else { 
        $
$value['id'] = get_option$value['id'] ); 
    } 
}
$current_page_id $wp_query->get_queried_object_id();
?>
<?php get_header
(); ?>

There's one line added and blank lines removed

John Dec 23, 2008 06:54 PM

That took care of it, but broke the "email this post" link (configured with wp-email plug-in). Reverting back to unmodified index.php for now.

Thanks,
John

Flynn Dec 23, 2008 07:00 PM

Great... then you wouldn't need 3.1.3 which I just released at http://wordpress.bytesforall.com/

That post above is the change I made for 3.1.3

To get rid of the "Update" message, you can change functions.php, around line 196

PHP Code:

$theme_version "3.1.2"

to

PHP Code:

$theme_version "3.1.3"


Flynn Dec 23, 2008 07:04 PM

Quote:

Originally Posted by John (Post 280)
That took care of it, but broke the "email this post" link (configured with wp-email plug-in). Reverting back to unmodified index.php for now.

Thanks,
John

I am looking into it

John Dec 23, 2008 07:07 PM

Hi Flynn,
We might have crossed replies......the fix worked but broke the "email this post" link in each post. With the fix enabled, when clicking the link you are taken to a blank page. I can reapply the fix if it would help troubleshoot the link issue,
John

Flynn Dec 23, 2008 07:24 PM

This should fix the WP-Email Problem, could you try this

Replace

PHP Code:

$current_page_id $wp_query->get_queried_object_id(); 

with

PHP Code:

if ( is_page() ) { $current_page_id $wp_query->get_queried_object_id(); } 


(Edited: The fix I posted before would work only with permalinks OFF.)


All times are GMT -6. The time now is 08:21 AM.

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