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,056 through 2,070 (of 5,207 total)
  • Author
    Posts
  • in reply to: Change color scheme #42155

    Hi weblifetj,

    Changing the Color scheme is not available in free version. You need to upgrade to pro version to change the color scheme.

    Thank you!

    in reply to: Slider does not work #42154

    Hi BelgiqueSEO,

    The Slider is also available in free version of our theme. Just follow the instruction https://www.themehorse.com/theme-instruction/clean-retina/#slider

    please provide your Site Url too so that we can help you

    Thank you!

    in reply to: link from Image Slider #42135

    Ok that’s great Akira

    Thank you!

    in reply to: link from Image Slider #42131

    Hi Akira,

    You mean to open it on same window right? So you don’t need to add target _self to open on same window. You can remove it target="_blank" so that it will open on same window/ browser.

    The file is inside theme folder -> inc -> structure -> header-extension.php on line no 410 to 416 you will find this code

    if (!empty($image_description)) {
    							$ambition_image_slider_display .= '<div class="featured-content">'.$image_description.'</div><!-- .featured-content -->';
    							$ambition_image_slider_display 	.= '<a title='.'"'.esc_attr($link_text). '"'. ' '.'href="'.esc_url($redirect_link).'"'.' class="call-to-action active" target = "_blank">'.esc_attr($link_text).'</a>';
    							if(!empty($secondary_text)){
    								$ambition_image_slider_display 	.= '<a title="'.esc_attr($secondary_text).'"' .' href="'.esc_url($secondary_url). '"'. 'class="call-to-action" target="_blank">'.esc_attr($secondary_text). '</a>';
    							}
    					}

    replace above and add below code

    if (!empty($image_description)) {
    							$ambition_image_slider_display .= '<div class="featured-content">'.$image_description.'</div><!-- .featured-content -->';
    							$ambition_image_slider_display 	.= '<a title='.'"'.esc_attr($link_text). '"'. ' '.'href="'.esc_url($redirect_link).'"'.' class="call-to-action active">'.esc_attr($link_text).'</a>';
    							if(!empty($secondary_text)){
    								$ambition_image_slider_display 	.= '<a title="'.esc_attr($secondary_text).'"' .' href="'.esc_url($secondary_url). '"'. 'class="call-to-action">'.esc_attr($secondary_text). '</a>';
    							}
    					}

    Note: If you make a direct change in code then updating to new version will loose all customization code. So each and every time while updating to new version you need to make same changes. So it would be better if you make a child theme and customize the code.

    Thank you!

    in reply to: Contact Info Bar #42124

    That’s great Brian

    Thank you!

    in reply to: recent work text #42122

    You welcome Cucerescu

    Thank you!

    in reply to: Theme Horse: Featured Image Widget – Not Full Width #42121

    Hi Robert,

    Could you provide your site Url too? You add feature image section to Business Page Our Clients Section Sidebar not in Business Page Section

    Hope this may help you
    Thank you!

    in reply to: "Previous" page button not working #42120

    Hi contactlovelexington,

    Go to Dashboard -> Settings -> Reading and choose your latest blog or use post page (your blog page). From onwards WordPress 4.4.1 post page as blog page will not work. Your settings must be below screenshot.
    http://awesomescreenshot.com/0555lhfk8c

    If you want to display blog full content template on other page then it works but to display on front page it will not work. By default you will have blog image large with read more button.

    To have blog full content you need code customization for it. Go to theme folder -> inc -> structure -> content-extension.php on line no 162 you will see this code
    <?php the_excerpt(); ?> remove this code and add below code
    <?php the_content(); ?> and also remove the line no 173

    <?php
    						echo '<a class="readmore" href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">'.__( 'Read more', 'interface' ).'</a>';
    						?>

    Better make a child theme and then customize the code. So that while updating to new version your customized code will not be lost. Otherwise you need to make same customization each and everytime you update to new version.

    Thank you!

    in reply to: Slider does not work #42119

    Hi BelgiqueSEO,

    Could you provide your site Url. So that we can find what the issue you are facing.

    Thank you!

    in reply to: Allowing line breaks in featured-content #42085

    You welcome rodrigozamorano 🙂

    Thank you!

    in reply to: Breadcrumbs #42084

    Hi Kathleen,

    No you can use BreadCrumbNavXT plugins for breadcrumbs and no need to create a child theme.

    Thank you!

    in reply to: Our team page link images & multiple page #42083

    Hi Désirée,

    Yes you are right. If you like to add a link to the single image on the our team page, it needs code customization. So you need to create a child theme. Make a copy of your parent theme. For this you need some thing about coding too. The parent widgets code is inside the theme folder -> inc -> widgets-> ultimate_widgets.php

    Goto line no 130 you will see this. register_widget("ultimate_ourteam_widget");
    Create a new widgets name register_widget("ultimate_child_ourteam_widget"); in your child theme.
    again copy that team widgets class functions from line no 838 to 1010 to your child theme and customize the code.
    class ultimate_ourteam_widget extends WP_Widget {to class ultimate_child_ourteam_widget extends WP_Widget {

    To create a multiple business page Create a page and select the template name (our team, services, testimonial). This template cannot be used for twice or many. If above template is not using then you can assign that template and drag and drop the widgets to their section.

    If you want a new template and widgets then you have to customize the code and there will be lots of code customization. So you need to hire a developer.

    Thank you!

    in reply to: Child Theme with functions.php and style.css #42082

    You welcome Laura

    Thank you!

    in reply to: Events Calendar Pro by Modern Tribe #42081

    You welcome administrator

    Thank you!

    in reply to: Remove links from head slider image #42080

    Hi Cucerescu,
    Yes the file name is header-extension.php, You need to find that above code and remove the <a> tag from that image. There are two slider in interface pro. Featured post/ page image slider and Upload Image slider. First make confirm that which slider are you using. Go through line no 521 there you can find the slider image code and also line no 589 to 593

    From there you may remove the <a> tag

    Note: Before making changes in the code first create a child theme then only customize the code. So that while updating to new version your customized code will not be lost. Other wise if you update to new version each and every time you need to make same code customization.

    Thank you!

Viewing 15 posts - 2,056 through 2,070 (of 5,207 total)