Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi James,
If you really want to make changes only in css then you may add your CSS via Custom CSS. Goto dashboard -> appearance-> theme options -> design options -> Custom css and add your custom css.
If you like to make a child theme then you need to add the following css in your functions.php
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );hope this may help you
or you may add in your child theme of style.css/* Theme Name: Ultimate Child Theme Author: Self-Help WordPress User Template: Ultimate Pro child */ @import url("../ultimate-pro/style.css"); .wrapper { width: 95%; background-color: #fff; }Thank you!
Theme Horse Support Team
KeymasterHi paul1288,
We cannot gurantee any third party plugins will work in our theme or not. We have not tested our site in wp easy cart too. So you need to hire a developer to fix it. If we find any solutions then we will let you know.
Thank you!
Theme Horse Support Team
KeymasterHi RDME07,
This feature is not available in our theme. You have to make code customization. Go to theme folder -> functions.php on line no 143 and 144 you will see this code.
add_image_size( 'slider-narrow', 1038, 460, true ); // used on Featured Slider on Homepage Header for narrow layout add_image_size( 'slider-wide', 1400, 460, true ); // used on Featured Slider on Homepage Header for wide layoutchange you slide image size according to your needs. But create a child theme before making any changes on it. After changing the slider size install regenerate Thumbnail plugins and regenerate the images.
Thank you!
Theme Horse Support Team
Keymasterhi thecedarsrc,
Could you once provide your site url too. So that it we may provide you the actual css.
Thank you!
Theme Horse Support Team
KeymasterHi Tammy,
You mean that your background image has been lost? IF yes then the background image is WordPress default background. We can’t do anything on it.We are sorry for it. You have to add again the background image.
Thank you!
April 20, 2015 at 5:00 am in reply to: Changing seach behaviour in \inc\structure\searchform-extension.php #24163Theme Horse Support Team
KeymasterHi pavlo.golub,
We cannot gurantee any other third party plugins will work in our theme or not. We have not tested AWPCP plugin in our theme. We don’t have Ukrainian translation in our theme.
Here is a simple example how to unhook page 404.php
Example to unhook the page 404:unhook functions
// Unhook default Thematic functions function unhook_thematic_functions() { // Don't forget the position number if the original function has one remove_action( 'interface_404_content', 'interface_display_404_page_content', 10 ); } add_action('init','unhook_thematic_functions'); // removes the header content by using hook interface_header add_action( 'interface_404_content', 'interface_child_display_404_page_content', 10 ); /** * function to show the footer info, copyright information */ function interface_child_display_404_page_content() { ?> <div id="content"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Error 404-Page NOT Found', 'interface' ); ?></h1> </header> <div class="entry-content clearfix" > <p>Thank you</p> </div><!-- .entry-content --> </div><!-- #content --> <?php }You may also search in forum how to unhook the parent code.
For example:-https://www.themehorse.com/support-forum/topic/child-theme-404-page-and-search-page-styling/
If you are still unable then you may hire a developer to fix it.
You need to create a two file in your child theme
style.css and functions.php (the above code should be added inside the functions.php)Thank you!
Theme Horse Support Team
KeymasterOk that’s great alexlikehere
Thank you!
Theme Horse Support Team
KeymasterHi Brett,
This feature is not available in our theme. We have designed our theme this way. This will be the new feature so it needs code customization. You need to hire a developer.
Thank you!
April 20, 2015 at 4:43 am in reply to: How to delete the "read more" button and show full blog texts on front page? #24158Theme Horse Support Team
KeymasterHi Elina,
To display full post content instead of excerpt there is only one way. Create any pages and at the right side there is template. Select the template to blog full content then it will display your full blog post.
Goto dashboard-> setting-> reading-> chhoose static front page (leave it to blank). Here don’t select the post page. If you select the post page then blog image large will be displayed.If you don’t like doing this way then it needs code customization and you need to hire a developer.
Thank you!
April 20, 2015 at 4:40 am in reply to: How to change the "search" button into my own language? #24157Theme Horse Support Team
KeymasterHi Elina,
To add search button to your language you need to upload translation file under language folder. Before uploading first of all create a child theme and then only add your .po and .mo file inside the language directory.
If you like to change it directly without creating .po and .mo file then the file is inside theme directory-> inc-> structure-> searchform-extension.php and translate to your language. Before making any change first make child theme to be safe from data loss while updating to our new version. If you could not make the child theme then each and every time while updating to our new version you need to edit the same thing.
Thank you!
Theme Horse Support Team
KeymasterHi Francis,
This feature is not available in interface pro theme. This is a new features to be add in the theme. It needs code customization. You need to hire a developer.
Thank you!
Theme Horse Support Team
KeymasterHi Petar,
We have designed our theme this way. The header image will be displayed in width= 100% . IF you want the header image to display then you may add this below css
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:.header-image { width: 20%; // set your height height: auto; // set your width }For the next time please post this forum topic to related forum topic. I thinks this question is of ultimate and you have post this in attitude.
Thank you!
Theme Horse Support Team
KeymasterHi christian,
We have designed our theme this way. If you don’t want featured image to display then it needs code customization. You just go to the theme folder-> inc-> structure-> content-extension.php and go to line no 276 to 287 and you will find this below code.
<?php if( has_post_thumbnail() ) { $image = ''; $title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) ); $image .= '<figure class="post-featured-image">'; $image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'; $image .= get_the_post_thumbnail( $post->ID, 'featured', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>'; $image .='<span class="arrow"></span>'; $image .= '</figure>'; echo $image; } } ?>Remove this above code and your featured image will not be displayed. Before making any changes first of all create a child theme then only customize the code to be safe from data loss while updating to our new version. If you feel its difficult then remove it from core file. But after new version update you need to do the above process again and again whenever you update.
Thank you!
Theme Horse Support Team
KeymasterHi Paulien,
Could you please send your site url too. If you have set business template then you can you need to follow the theme instruction how to set the business template.
https://www.themehorse.com/theme-instruction/attitude/Thank you!
Theme Horse Support Team
Keymasterhi Eric,
This feature is not available in our theme. It needs code customization. We are sorry for this.
Thank you!
-
AuthorPosts
