Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi Jason,
Yes you have done it correct but the placement is in wrong place. you need to customize the code inside theme folder-> inc -> structure -> header-extension.php and find the right location and then customize the code. If you do you direct changes in the code then while updating to our new version your customized code will be lost. So you need to create a child theme to be safe from data loss.
Thank you!
Theme Horse Support Team
KeymasterThis is an example how to unhook page 404.php and use your own content.
unhook functions
// 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
*/Hi Dale,
First of all you need to unhook the functions and then only customize the code in your child theme functions.php. Here is a simple example how to unhook functions and customize the code.
// Unhook default Thematic functions function unhook_thematic_functions() { // Don't forget the position number if the original function has one remove_action( 'attitude_404_content', 'attitude_display_404_page_content', 10 ); } add_action('init','unhook_thematic_functions'); // removes the header content by using hook attitude_header add_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 }Do in this way for content-extension.php and if you are unable to fix it then you need to hire a developer to fix it.
Thank you!
May 27, 2015 at 5:51 am in reply to: My Homepage is the posts page – Feature Image size issue #25159Theme Horse Support Team
KeymasterHi Olindo,
There is only one way to do this. To show blog image medium effect you have to select the page.
View this screenshot
http://awesomescreenshot.com/00e4xl1da8And go to any pages and select the template blog medium template and you can see the blog image medium in your home page.
Thank you!
Theme Horse Support Team
KeymasterHi christianstgallo,
We are sorry for this. This feature is only available in Pro version of our theme. This feature is not available in free version.
Thank you!
Theme Horse Support Team
KeymasterHi Thomas,
Yes we have made the slider content off to display in mobile display. Because too many text will voilate the design. We have designed our theme this way. If you want to display text in your tablet then please add this below custom css
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save@media only screen and (max-width: 767px) { .featured-text { display: block; } }Hope this may help you
Thank you!Theme Horse Support Team
KeymasterHi nthhenrique,
Yes i am also telling the same thing. If you select the latest post display as we have already replied before. Then you will have the “home’s corporate type layout options” and Just try this once
Thank you!
Theme Horse Support Team
KeymasterHi per.norell,
Yes there will not be any options to add a table. Just follow this below link how to add table.
http://www.w3schools.com/html/html_tables.aspThank you!
Theme Horse Support Team
KeymasterYou welcome per.norell
Thank you!
Theme Horse Support Team
KeymasterThat’s great Dale
Thank you!
Theme Horse Support Team
KeymasterHi per.norell,
This feature is not available in our theme so it needs code customization.
Thank you!
Theme Horse Support Team
KeymasterHi nthhenrique,
If you want to display the three image as you have mentioned in screenshot then there is only one way
you go to the dashboard-> settings-> reading-> and choose latest post as shown in screenshot.
http://awesomescreenshot.com/0844x6g608If you don’t like doing this way then it needs code customization and you need to hire a developer.
Thank you!
Theme Horse Support Team
KeymasterHi Itzik Adir,
The subscriber cannot install the plugins so you are getting this issues for subscribers. This is not the theme issue. Its better not to give the subscriber to enter in the admin section(dashboard).
Try this plugins but not sure whether it works or not
https://wordpress.org/plugins/remove-dashboard-access-for-non-admins/Thank you!
Theme Horse Support Team
KeymasterHi infoflavio,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save
.call-to-action { display: none; } .featured-text .featured-title { display: none; }Thank you!
May 22, 2015 at 5:23 am in reply to: Copyright is being sucked into the one of the footer blocks? #25067Theme Horse Support Team
KeymasterHi Jason,
First of all i would like to confirm that did you made any code customization or not?
Go to dashboard-> appearance -> widgets-> and view this screenshot
http://awesomescreenshot.com/0084x6aib7
Thank you!
Theme Horse Support Team
KeymasterThanks Jörg for helping us
Thank you!
-
AuthorPosts
