- This topic has 14 replies, 3 voices, and was last updated 10 years, 3 months ago by Theme Horse Support Team.
-
AuthorPosts
-
May 3, 2014 at 10:32 pm #9979TheTwisterParticipant
Hi there,
Not sure if I can explain this properly but…
When I create a new page and make it to the template default. There isn’t the grey background over the title like the contact form template.What do I need to do to make this appear like the contact form for the default page?
May 4, 2014 at 9:53 am #9991Theme Horse Support TeamKeymasterHi
for the contact for page you need to select the contact form template.
We have designed our theme this way. If you select the default page then it may not work too so we recommend you to use contact template.
Regards
SunilMay 6, 2014 at 3:54 pm #10069TheTwisterParticipantHi Sunil,
So there is no way to make the title like on the contact template work the same on the default page?
Because I’m not wanting the right column widget which is on that contact page.May 11, 2014 at 6:04 pm #10223Theme Horse Support TeamKeymasterHi TheTwister,
We have design the page title that way for contact template. We will update this in next version soon.
Also, To remove right column widget from the contact page please edit your contact page and set it to default page template from the right part of the editor page as shown in this screenshot http://awesomescreenshot.com/0d72s99i5b then go to your bottom of the editor page and set the page layout to No sidebar, Full Width as shown in this screenshot http://awesomescreenshot.com/0742s99lbdHope this solve your problem.
Thank you for using our theme.
May 12, 2014 at 4:51 pm #10257TheTwisterParticipantJust to double check what you said. You are going to make the page title the same as the contact form for the default template?
May 13, 2014 at 8:47 am #10276Theme Horse Support TeamKeymasterHi TheTwister,
Yes the page title designed will be changed if you choose the default template for contact page. If you want to remove the right sidebar you will have to consider with the page title design. For now it is not possible to make the same page title for all the pages as contact page have. We will think about it and update it in near future.
Thank you!
June 2, 2014 at 4:33 pm #10884TheTwisterParticipantAny news for having the page title wrap for the default page? The website looks smarter having it for all pages.
June 4, 2014 at 9:33 am #10952Theme Horse Support TeamKeymasterHi TheTwister,
Recently we haven’t worked on it yet. Many thanks for your suggestion. We will think about it in our upcommig version.
Thank youJune 7, 2014 at 7:47 pm #11088TheTwisterParticipantAhh ok thank you.
I hope you do create it in the next version! I really like this template for what I’m doing.
Just not having all of the titles the same looks quite strange and its really bugging me.June 8, 2014 at 12:51 pm #11099Theme Horse Support TeamKeymasterHi TheTwister,
Thanks for your suggestion.
Thank you!
July 21, 2014 at 1:57 pm #12326TheTwisterParticipantHave you done this yet?
July 21, 2014 at 2:12 pm #12330Theme Horse Support TeamKeymasterSorry Twister,
We are busy on new product. You may customize a code by making the child theme. We will think about it.
Thank you!July 28, 2014 at 6:14 pm #12549TheTwisterParticipantHm ok I tried it with a child theme but it wouldn’t let me for some :-/
July 28, 2014 at 8:51 pm #12554TheTwisterParticipantThe child theme works with CSS, how do I work it with changing the PHP files?
July 29, 2014 at 12:09 pm #12566Theme Horse Support TeamKeymasterYou just create a functions.php file and first unhook the functions and then only edit the code.
for example to change the text of error page.
// Unhook default Thematic functions
function unhook_thematic_functions() {
// Don’t forget the position number if the original function has oneremove_action( ‘attitude_404_content’, ‘attitude_display_404_page_content’, 10 );
}
add_action(‘init’,’unhook_thematic_functions’); // removes the header content by using hook attitude_headeradd_action( ‘attitude_404_content’, ‘attitude_child_display_404_page_content’, 10 );
/**
* function to show the footer info, copyright information
*/function attitude_child_display_404_page_content() { ?>
<div id=”content”>
<header class=”entry-header”>
<h1 class=”entry-title”><?php _e( ‘Error 404-Page NOT Found’, ‘attitude’ ); ?></h1>
</header>
<div class=”entry-content clearfix” >
<p>Thank you</p>
</div><!– .entry-content –>
</div><!– #content –>
<?php
}Or you may view the forum link too.
Thank you!
-
AuthorPosts
- You must be logged in to reply to this topic.