Forum Replies Created
-
AuthorPosts
-
thebobajobMember
Hi Rabin
OK. I am OK at tweaking codes if I knew which part of the code was causing the problem – can you point me in the right direction please?
Cheers
BobthebobajobMemberHi
Go to http://www.servicereality.co.uk/search/forum+title+one/
You will see the output has been stripped of all tags so ending up with
“Viewing 1 results (of 1 total) Author Search Results Last updated 2 weeks, 4 days ago #37 Forum: Forum title one Author Search Results Viewing 1 results (of 1 total)”Cheers
BobthebobajobMemberPlease can you reply regarding the bbPress search results problem. It is crucial I get this working.
The Theme is stripping out all of the HTML form the search results.
Also still need to fix the Blog title problem I initially posted about.
Thanks
BobthebobajobMemberI have another couple of problems with the theme.
1) The expandable search box is not in the right position in Safari until you click it, then it shows properly in the right place. The form element is inheriting the width of the opened search box even when it is shrunk. Once focus is taken away it reverts back to the wrong place.
2) I am using bbPress in the theme and the search results that come with bbPress is having all the tags stripped by something in the theme so all the output is just one long line of text. Any idea what might be doing this?
Cheers
BobthebobajobMemberPlease can you reply.
ThanksthebobajobMemberHi
I tried that before I contacted you, as per the instructions, the title simply will not appear. The only way I can get it to appear is to change
if( ( ( '' != attitude_header_title() ) || ( $attitude_show_breadcrumb == 'true' && function_exists( 'bcn_display_list' ) ) ) && !( is_home() || is_front_page() ) ) {
to
if( ( ( '' != attitude_header_title() ) || ( $attitude_show_breadcrumb == 'true' && function_exists( 'bcn_display_list' ) ) ) && !( /*is_home() ||*/ is_front_page() ) ) {
and add in
elseif( is_home() ) { $attitude_header_title = "Blog"; }
to
function attitude_header_title() {
which obviously isn’t satisfactory as it’s hardcoded.
If I put in
elseif( is_home() ) { $attitude_header_title = get_the_title(); }
I get the title of the first post.
Bob
-
AuthorPosts