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,836 through 2,850 (of 5,207 total)
  • Author
    Posts
  • in reply to: Resize logo image in tab & mobile view. #24269

    hi raden,

    Yes your menu logo will not be resized in mobile view. We have designed our theme this way. If you like to change the size of menu logo in responsive view then you need to hire a developer to fix it or customize the code.

    Thank you!

    hi Elina,

    IF you want to display blog full post then don’t do any thing inside dashboard-> appearance-> reading -> choose static page (post page : leave it to default (–select–))

    Just go to pages and at the right side there is template. Choose blog full content. Then you blog full content will be displayed.

    Thank you!

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

    Hi Elina,

    Just view this link how to create a child theme.
    https://codex.wordpress.org/Child_Themes

    Child theme is a child of you parent theme (eg: interface) that you have in your dashboard. All the functions will be controlled by child theme and if you want to make any changes then all your data will not be lost while updating to our new version.

    Thank you!

    in reply to: bbPress Issues #24266

    Hi James,

    This is not the theme relating issue. We are here to support only the theme relating issues only. You may post your topic here
    https://bbpress.org/forums/

    Thank you!

    in reply to: How to change max-width for responsive menu toggle? #24265

    Ok that’s great AlicePh

    Thank you!

    in reply to: Video/Slider #24264

    Hi hypercomputer_9800,

    We have not tested the video slider in our theme. So i think its not possible to slider the video player in our theme. You may need to customize the code or hire a developer to fix it.

    Thank you!

    in reply to: Featured image removal #24263

    Hi christian,

    please view this link to create a child theme
    https://codex.wordpress.org/Child_Themes

    Thank you!

    in reply to: Difficult to change content-extensions #24230

    Hi rodrigoschneider94,

    Copying content-extensions in the child folder will not work. You need to create a functions.php and first of all which functions do you want to change. First of all you need to unhook the functions and then only customize the code. This is the example how to change page 404.php

    example:

    // 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 ); //for page 404.php
    }
    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() {  // to override 404.php    ?>   
    <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 this is final</p> 
    		</div><!-- .entry-content -->
    	</div><!-- #content -->
      <?php 
    }
    

    Thank you!

    in reply to: Gallery template not working #24229

    Hi Isabelle,

    Could you once send your temporary username and password at Email Us, We will look over it. Please don’t forget to send this forum url too.

    Thank you!

    in reply to: How to enable gzip #24228

    Hi pdetlef,

    We prefer not to change anything inside wp-admin and wp-options. Some above js is from plugins and some is from our theme. We can’t do anything about the plugin script. For other scripts you need code customization. We have designed our theme this way.

    Thank you!

    in reply to: Include/ Exclude a category in a separate page #24227

    Hi Isabelle,

    If you have selected both the Category “Klein-Sinaai” and Category “Stekene” on the related post then it will be displayed. Could you once send your site url too.

    Thank you!

    in reply to: Duplicate Services Page Template #24205

    Hi Eric,

    This feature is not available in our theme. You need code customization for it. We are sorry for this feature. If you have managed child theme then create a new template same as a business template under child theme and also register the sidebar and you may use that services widgets on the next business template too. If you are unable the you need to hire a developer to fix it.

    Thank you!

    Hi steven1,

    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    @media only screen and (max-width: 767px)
    #branding .info-bar {
      display: block;
    }

    Thank you!

    Hi pavlo.golub,

    <?php 
    //child theme functions.php 
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') );
    }

    This is the correct way. If there is a function hook then you have to unhook the functions first and then hook the functions in child theme and then customize the code.

    Thank You!

    in reply to: Widgets question #24202

    Cheers alexlikehere

    Thank you!

Viewing 15 posts - 2,836 through 2,850 (of 5,207 total)