badget

Biggest Sale! Special Offer!

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

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 436 through 450 (of 5,207 total)
  • Author
    Posts
  • in reply to: Attitude Pro #81516

    You can update the theme manually via FTP or just activate this plugin and follow the instructions below:

    1. Go to Appearance > Themes.
    2. Click on the ADD NEW button.
    3. Click on the UPLOAD THEME button.
    4. Click BROWSE and choose the zip file that you have downloaded from your account via our site.
    5. Click the INSTALL NOW button.

    If you have any problems, please let us know.

    Thank you!

    in reply to: FolioPress Category White Space #81515

    Hi,

    We have provided the solution on your next topic here.

    Thanks

    in reply to: Mobile Menu #81512

    Please go to Theme directory > header.php file. On line on: 52 you will find below line of codes.

    </div><!-- .site-branding .navbar-brand -->

    Now replace the above mention code with the code provided below.

    </div><!-- .site-branding .navbar-brand -->
    <span class="search-toggle mobile-view-toggle"></span>

    NOTE: Make sure you make the child Theme to customize the code so that your customized code won’t get lost when updating the Theme to a newer Version in Future.

    Now Go to ‘Dashboard > Appearance > Customize > Additional CSS’ and paste the below custom CSS Code.

    .navbar .search-toggle.mobile-view-toggle {
    	display: none;
    }
    @media (max-width: 991px) {
    	.navbar .search-toggle.mobile-view-toggle {
    		display: block;
    		padding: 10px;
    		position: absolute;
    		top: 17px;
    		right: 50px;
    	}
    	.search-block .search-form {
    		width: 90%;
    	}
    }
    in reply to: Featured Video & Related Post #81509

    Hi jai,

    To show Video as featured image and to display content on widget sub posts, you need to hire a developer to customize the code for you and to show related you can use some free plugins which will help to show the related posts.

    Please let us know if you have any other queries regarding the Theme.

    Thanks

    in reply to: Buddypress’s links not working from the menu #81508

    Hi,

    Our Theme supports the Similar Plugin BBPress, its not possible to make support for very plugins in the WordPress but some how most of the plugins are supported by this theme initially. And its great that the next plugin you mentioned worked for you. Cheers

    Please let us know if you have any other queries regarding the Theme.

    Thanks

    in reply to: Links in Footer #81507

    If want to show the all About Us, Contact us and Privacy Page on the End Footer at the same place along with copyright text and powered by links and also redirect the link to a new tab then you need to hire a developer to customize the code for you. Also please make a child theme to customize the code so that you wont loose the customized code when updating the Theme to a newer version.

    But if you want to show the about us, contact page and privacy page as horizontal on the same widget area as now then please share us your sit URL so that we can provide you the exact CSS code to make the link list horizontal.

    Thanks

    in reply to: Header background image always resizes #81506

    Hi Yes the background image header section are made covered position so that it gets fits for every screen sizes without affecting he height of header section.

    and the site title and tagline color are made white when having background image and overlay to dark and the color are made black when overlay is set to lighter. if you want to change color of the site title and tagline then go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .navbar-head .site-title,
    .navbar-head .site-title a,
    .navbar-head .site-description {
    	color: red !important;
    }

    Please replace the ‘red’ color with your desired color (Hex Color or Color Name). The background overlay won’t affect the color of Site Title and Tagline Color.

    Thanks

    in reply to: Links in Footer #81369

    Hi amitmozar,

    First you have to create a Menu from ‘Appearance > Customize > Menus’ where you can add list of pages and Custom Links. After Creating Menu you can use that created menu on Footer Widget area using Navigation Widget.

    For Privacy Page link create a privacy page and select that page via WP Dashboard > Settings > Privacy .

    Thanks

    in reply to: Attitude Pro #81300

    Hi Lars,

    Please login to our site and download latest Updated file from your account page.

    Thanks

    in reply to: Menu and Font Question #81299

    Hi info293,

    To make the Navbar centered, please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS Code.

    .navbar>.container, .navbar>.container-fluid {
    	display: block;
    	text-align: center;
    }
    .navbar-brand,
    .main-navigation {
    	margin-right: inherit;
    	margin-left: inherit !important;
    }
    .navbar-collapse {
    	-ms-flex-pack: center;
    	justify-content: center;
    	text-align: left;
    }
    .navbar-toggler {
    	position: absolute;
    	top: 30px;
    	right: 15px;
    }

    And for the Font Family “Gupter”. Google adds new fonts time to time and the mentioned font is added after our theme updates. We will soon add these on our next updates. For now to add the font “Gupter” on the list please go to the ‘Theme Directory > inc > customizer.php’. on line no: 293 and 294 you will find below codes.

    "Gudea" => "Gudea",
    "Gurajada" => "Gurajada",

    Now add the below provided font code in between of above mention code.

    "Gupter" => "Gupter",

    After adding, the code should look like this.

    "Gudea" => "Gudea",
    "Gupter" => "Gupter",
    "Gurajada" => "Gurajada",

    Now save the file and you will see the ‘Gupter’ font on the Font family list.

    Thanks

    in reply to: Hide ‘excerpt’ #81239

    Ok,

    Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .post-wrap .post .entry-content,
    .post-wrap .hentry .entry-content {
    	display: none;
    }

    Thanks

    in reply to: Hide ‘excerpt’ #81152

    Hi amitmozar,

    Excerpt are shown on blogs and widgets as well so could you please clarify for which section do you wish to hide the excerpt? Then we will provide you the Custom CSS code to hide them.

    Also if you wish to upgrade the Theme to Premium Version then you will have access to control the excerpt length and setting 0 (zero) length will hide the excerpt. Even there are lots more features available in Premium Version. Have a Look at the Demos Here

    Thanks

    in reply to: show caption of featured image on post/page #81151

    Just create the ‘inc’ folder on the Child Theme. and to link with the php files just use the code on main function.php file as mentioned below.

    require get_stylesheet_directory() . '/inc/abc.php';

    Thanks

    in reply to: I want hide author name in de post; #81120

    Hi robin.acosta.1982,

    Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Provided Custom CSS code.

    .entry-meta .author {
    	display: none;
    }

    Thanks

    in reply to: How do remove author and date links from the posts and widgets? #81119

    Go to theme directory > inc > function.php. On line no: 142 to 144, you will find the below line of codes.

    $posted_on = '<a href="' . esc_url( get_permalink() ) . '" title="'. the_title_attribute('echo=0') . '">' . esc_html( $time_string ) . '</a> ';
    
    		$byline = '<a href="' . esc_url( get_author_posts_url( get_the_author_meta('ID') ) ) . '">' . esc_html( get_the_author() ) . '</a> ';

    Now replace the above code with the code provided below.

    $posted_on = '<a href="#" title="'. the_title_attribute('echo=0') . '">' . esc_html( $time_string ) . '</a> ';
    
    		$byline = '<a href="#">' . esc_html( get_the_author() ) . '</a> ';

    Thanks

Viewing 15 posts - 436 through 450 (of 5,207 total)