badget

Biggest Sale! Special Offer!

Get 50% discount on all of our single themes with this coupon code: #50%SALE

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 2,851 through 2,865 (of 5,207 total)
  • Author
    Posts
  • in reply to: Ultimate Pro Child Theme #24201

    Hi 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!

    in reply to: Option set problem #24168

    Hi 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!

    in reply to: Changing slider size #24167

    Hi 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 layout

    change 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!

    in reply to: How to remove page titles #24166

    hi thecedarsrc,

    Could you once provide your site url too. So that it we may provide you the actual css.

    Thank you!

    in reply to: Upgraded to RetinaPro and lost the background button #24165

    Hi 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!

    Hi 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!

    in reply to: Widgets question #24160

    Ok that’s great alexlikehere

    Thank you!

    in reply to: Slider not hiding on mobile (responsive) #24159

    Hi 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!

    Hi 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!

    in reply to: How to change the "search" button into my own language? #24157

    Hi 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!

    in reply to: Align center for menu items #24156

    Hi 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!

    in reply to: Logo options; Suggested image dimensions; #24116

    Hi 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!

    in reply to: Featured image removal #24115

    Hi 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!

    in reply to: homepage design #24094

    Hi 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!

    in reply to: No Address or Phone Fields #24093

    hi Eric,

    This feature is not available in our theme. It needs code customization. We are sorry for this.

    Thank you!

Viewing 15 posts - 2,851 through 2,865 (of 5,207 total)