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,116 through 2,130 (of 5,207 total)
  • Author
    Posts
  • in reply to: Edit readmore-button? #41612

    Hi monmidt,

    To change the readmore button into your own language first you need to create a .po and .mo file and that translated .po and .mo file should be kept inside the language folder. Then, after readmore buttons into your own language.

    If you like direct change in the code then first you create a child theme and then customize the code. So that while updating to new version your customized code will not be lost.

    Thank you!

    in reply to: Please Add Xing to social Links #41558

    🙂

    in reply to: Hyper links are not working on the posts page #41556

    Hi Sébastien,

    Yrs, If you select the WordPress post page than you blog large image will be displayed. Blog image large is the theme default blog. In blog image large and blog image medium, all the content is extracted from excerpt so excerpt only supports plain text. So to add hyperlinks you need to choose blog full content template. Otherwise it needs code customisation and need to hire a developer.
    First create a child theme and then only customise the code so that while updating to new version your customised code will not loss. Otherwise you need to add the customised code manually.

    Thank you!

    in reply to: Editor? #41553

    Hi tjmarx73,

    Did you tried activating twenty fifteen or twenty sixteen themes? Once you activate twenty fifteen or twenty sixteen themes and check it whether the same problem occurs or not?

    Thank you!

    Hi paul.mills,
    We have designed this way. So that the user can view the full image. If we enable the content in the slider then you cannot view the full image properly.

    Thank you!

    in reply to: Hyper links are not working on the posts page #41499

    Hi Sébastien,

    We have extracted the content using the excerpt. So you cannot add link to excerpt. If you like to have a link on it then it needs code customization. But before making changes on the code then first you need to create a child theme and then customize the code.

    Why don’t you use blog full content template if you want link over it. Create a blog page and select blog full content template. You don’t need to select it from dashboard-> settings-> reading
    Hope this may help you
    Thank you!

    in reply to: Editor? #41496

    Hi Irit,

    Did you made and code customization or added any scripts or any CSS? If not then first deactivate all the plugins that you have installed in your dashboard and recheck it once. If still same problem then trying updating a new version of WordPress. Because we are not facing any issues that you are talking about. If still there is an issue then let us know.

    Some times due to slow internet connection too this problem will occur.

    Thank you!

    in reply to: Translation Problems #41494

    That’s great Irit

    Thank you!

    in reply to: IE Problems #41493

    Which version are of IE are you using?

    Thank you!

    in reply to: Change icon-size in header infobar? #41492

    That’s great monmidt

    Thank you!

    in reply to: CSS Print disorganized #41361

    Oh that’s great bazzarello1

    Thank you!

    in reply to: Show Latin CE font #41329

    Hi dora.henger,

    We just support fonts but not Latin CE character set. So it needs code customization. In pro version there are a lots of fonts but no latin CE character.

    To have a change it, you have to customize the code. Before making changes on the code first create a child theme and then unhook the functions and then only customize the code. The code is inside theme folder-> inc-> functions-> functions.php on line no 327. You can add your latin character there. But make a child theme so that while updating to new version your customised code will not be lost.

    Thank you!

    in reply to: Change to Spanish button "Read More" #41328

    Hi Mariana,

    To change from english to spanish read more text you just goto dashboard-> appearance-> customize-> advanced options-> excerpt options and change the read more text into your own language.

    To make full compatible with your own language then you need to create a .po and .mo file and should be placed inside the language folder.

    Thank you!

    in reply to: Making a Child for Function.php Error #41327

    Hi pentalogia,

    If there is a function used previously in parent theme then you cannot redeclare the same function name on your child theme. To make a work first unhook the functions (original) and then only customize the code in your functions.php. You can view this below link how to unhook the functions.
    Below is just an example to unhook page 404.php . paste below code under funtions.php and it will overwrite page 404.php. Similarly you can do this for other functions too.

    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 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 
    }

    Thank you!

    in reply to: Add icon to social links #41326

    Hi Irit,

    We are sorry for this. We are using generic icons but there is no any xing icons. So we are sorry for this. In future we will add after the available of generic icons.

    Thank you!

Viewing 15 posts - 2,116 through 2,130 (of 5,207 total)