Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Textpattern Front of Site Theme BlueSky
I have released a new Textpattern Front of Site Theme called “BlueSky”.
This is a professional ready to use blogging Theme with many nice features. Installation uses Manfre’s “mem_templates”, what an installation almost as easy as with WordPress guaranteed. Some minutes for the installing – ready to blog!
Browser compatibility: IE 7, IE 8, Opera 9.6, Gecko 1.9+ (Camino 2.0b4+, Firefox 3.0+), Safari 3+, Chrome 2+. IE6 is not supportet, but a IE6 user can find all Informations. Only the Design is for IE6 not perfect.
Download: http://textgarden.org/file_download/96/TXP+BlueSky.zip
The theme is now available on Textgarden
There now exists a constant demo – see http://textgarden.org/layouts/233/txp-blue-sky for an preview. Have fun with it!
Last edited by Tuts_and_Tipps (2010-03-27 10:45:47)
Offline
Re: Textpattern Front of Site Theme BlueSky
Looks interesting. I’ll look it over and might use it for my dice collection site which is presently a Nucleus blog.
Offline
Re: Textpattern Front of Site Theme BlueSky
Actually it looks very cool Andreas. I have it in hand. Might add some extra goodies in admin.
Stuart
In a Time of Universal Deceit
Telling the Truth is Revolutionary.
Offline
#4 2010-03-22 07:26:29
- candyman
- Member
- From: Italy
- Registered: 2006-08-08
- Posts: 684
Re: Textpattern Front of Site Theme BlueSky
Very interesting. Love the multi-purpose sidebar (with comments, favourites, categories…) and the author’s image too.
Txp needs works like this to seem less scary to newbie people accustomed to WP plug&play.
Offline
Re: Textpattern Front of Site Theme BlueSky
Thanks guys.
Nice that you like my work :-)
Offline
Re: Textpattern Front of Site Theme BlueSky
If you are still having a problem downloading it give me an email address and I’ll send it over.
Stuart
In a Time of Universal Deceit
Telling the Truth is Revolutionary.
Offline
#7 2010-03-26 22:04:44
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: Textpattern Front of Site Theme BlueSky
Tuts_and_Tipps wrote:
Download: http://textgarden.org/file_download/96/TXP+BlueSky.zip
Considering that most people would like to view it before downloading, a link to the “textgarden page” (http://textgarden.org/layouts/233/txp-blue-sky) might have been better?
Offline
Re: Textpattern Front of Site Theme BlueSky
thebombsite schrieb:
If you are still having a problem downloading it give me an email address and I’ll send it over.
I have already sent him the Theme via email. He has left a comment on Tuts & Tipps too :-) Had forgotten to write it here.
@ Els: I have added the link to Textgarden, thanks for the note.
Last edited by Tuts_and_Tipps (2010-03-27 10:51:10)
Offline
#9 2010-06-10 07:24:56
- EricW
- New Member
- Registered: 2010-06-09
- Posts: 2
Re: Textpattern Front of Site Theme BlueSky
Could anyone help with installing the ‘Blue Sky’ theme.
After installation and completing widgets/variables in content. I get the following: Parse error: syntax error, unexpected T_CLASS in /homepages/15/d145826915/htdocs/btweets/textpattern/lib/txplib_misc.php(484) : eval()‘d code on line 7
Fatal error: Call to undefined function: stripos() in /homepages/15/d145826915/htdocs/btweets/textpattern/lib/txplib_misc.php(594) : eval()‘d code on line 101
I have already done the following, but problem persists:
Both forms (woo_variables and woo_widgets) are active under the forms tab.
First, I deleted the forms (woo_) and created them again, still the same problem as above.
Then I deleted the whole of my txp database and also all the files from my root directory. Started again, creating a new TXP installation and then a new BLue Sky installation.
Exactly the same problem. I am at a loss how to solve this problem now.
Regards
EricW
Offline
#10 2010-08-20 18:01:25
- TruckerGeek
- New Member
- Registered: 2010-08-20
- Posts: 1
Re: Textpattern Front of Site Theme BlueSky
Almost setup, but having one annoying error:
Tag error: <txp:smd_query query=“SELECT ID, Title, Count(parentid) AS num FROM txp_discuss AS com LEFT JOIN textpattern AS txp ON txp.ID = com.parentid WHERE com.posted > ADDDATE, INTERVAL -1 MONTH) AND com.visible = 1 GROUP BY com.parentid ORDER BY num desc LIMIT 10” wraptag=“ul” break=“li”> -> Textpattern Warning: Table ‘textpattern357.txp_discuss’ doesn’t exist
SELECT ID, Title, Count(parentid) AS num FROM txp_discuss AS com LEFT JOIN textpattern AS txp ON txp.ID = com.parentid WHERE com.posted > ADDDATE, INTERVAL -1 MONTH) AND com.visible = 1 GROUP BY com.parentid ORDER BY num desc LIMIT 10 on line 85
It looks like some file is not passing the database table prefix. Having a hard time figuring out where and why.
Offline
#11 2010-08-20 23:24:40
- uli
- Moderator
- From: Cologne
- Registered: 2006-08-15
- Posts: 4,310
Re: Textpattern Front of Site Theme BlueSky
Download and install smd_where_used. After that you’ll find it on the extensions tab. Search for txp_discuss
. In every instance found prefix it with your database prefix.
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
Re: Textpattern Front of Site Theme BlueSky
You will find the code for that in the “Famous_Articles” form template. It looks like this:-
<txp:smd_query
query="SELECT ID, Title, Count(parentid) AS num
FROM blu_txp_discuss AS com
LEFT JOIN blu_textpattern AS txp
ON txp.ID = com.parentid
WHERE com.posted > ADDDATE(CURDATE(), INTERVAL -1 MONTH)
AND com.visible = 1
GROUP BY com.parentid
ORDER BY num desc
LIMIT 10"
wraptag="ul" break="li">
<txp:permlink id="{ID}">{Title}</txp:permlink><br /> Comments: [ {num} ]
</txp:smd_query>
Notice how these 2 lines:-
FROM blu_txp_discuss AS com
LEFT JOIN blu_textpattern AS txp
both have “blu_” added in. That is a prefix set when Txp is installed. You just need to replace that with whatever your own prefix is.
Stuart
In a Time of Universal Deceit
Telling the Truth is Revolutionary.
Offline