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 - 451 through 465 (of 5,207 total)
  • Author
    Posts
  • in reply to: Duplicate posts on homepage #81061

    Hi James Gross,

    If you show the latest post for every sections then it will obviously shows the same post of every section. We have added the option to show the post through category. You can set different category to different sections to show different posts.

    Thanks

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

    Ok if you want to remove the code as well then you have to remove the link from the code of every sections and widgets. As you know the code to remove the link but we recommend you to customize the after making the child theme so that you wont loose the customized code when updating the Theme to a newer Version in future.

    Thanks

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

    Ok the code we provided was just for the Featured Image caption so the only text set on Caption field will be displayed. The description won’t be displayed by that code.

    Anyways its great that your code worked but you have added an extra ‘}’ (curly braces) at the end. If you are going to add some additional Custom CSS code after it then the code won’t work because of that extra curly braces.

    Thanks

    in reply to: Remove the category that appears in the photos #80998

    Hi sekyfoods,

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

    .widget .cat-links {
    	display: none;
    }
    .widget_2_column_category .entry-header {
    	margin-top: inherit;
    }

    Thanks

    in reply to: Remove responsiveness of the theme. #80997

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

    .navigation-bar-top {
    	display: none;
    }
    .navbar .navbar-collapse,
    .navbar .main-navigation .nav-menu {
    	display: block;
    }
    .main-navigation ul li a,
    .main-navigation ul li ul li a,
    .main-navigation ul li ul li ul li a,
    .main-navigation ul li ul li ul li ul li a,
    .main-navigation ul li ul li ul li ul li ul li a {
    	padding: 15px;	
    }
    .navigation-bar .container {
    	padding-left: 85px;
    }

    Thanks

    in reply to: Centered image on Right SideBar Widget #80996

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

    .widget_media_image {
    	text-align: center;
    }

    Thanks

    in reply to: Only showing two posts #80995

    Hi epiphany,

    It’s Great that you solved the issue by yourself.

    Please let us know you have any other queries regarding Themes.

    Thanks

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

    Hi Roberto,

    Did the code that you added worked? We think it doesn’t work.

    Please remove those added code then on line no: 34. you will find the below code.

    </figure><!-- .post-featured-image .page-single-img-wrap -->

    Now replace the above mentioned code with the below provide code.

    <figcaption class="featured-image-caption"><?php echo get_the_post_thumbnail_caption(get_the_ID()); ?></figcaption>
    </figure><!-- .post-featured-image .page-single-img-wrap -->

    after replacing the code save the file and please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS Code.

    .post-featured-image.page-single-img-wrap {
    	overflow: hidden;
    }
    .post-featured-image.page-single-img-wrap .featured-image-caption {
    	position: absolute;
    	left: 0;
    	right: 0;
    	bottom: 0;
    	padding: 50px 25px 15px;
    	color: #ffffff;
    	background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
    }
    @media (max-width: 767px) {
    	.post-featured-image.page-single-img-wrap .featured-image-caption {
    		padding-left: 15px;
    		padding-right: 15px;
    	}
    }

    Thanks

    in reply to: Date format in post #80993

    Hi Roberto,

    Yes you can change the Date Format through ‘Dashboard > Settings > General’. There you will find options for Date Format.

    Thanks

    in reply to: width Web #80992

    Hi Roberto,

    Sorry we forgot to provide the code that should affect for the page too. It’s Great you find out the solution by yourself. Even We have updated the pervious code as well.

    Thanks

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

    Hi alex.casinov777,

    To make the Date and Author not clickable then Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    .entry-meta .author a,
    .entry-meta .date a {
    	pointer-events: none;
    	cursor: default;
    }

    Thanks

    in reply to: Change WooCommerce “Main image width” not working. #80875

    Ok we figured out the issue. Please go to ‘Appearance > Customize > Additional CSS’ and paste the below Custom CSS code.

    @media (min-width: 992px) {
    	.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    		width: 38%;
    	}
    
    	.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    		width: 58%;
    	}
    }

    Thanks

    in reply to: Centered image on Right SideBar Widget #80868

    could you please share us your Site URL of the exact page in which you want to centered the image. So that you can provide you the appropriate code

    Thanks

    in reply to: Remove responsiveness of the theme. #80866

    Hi ahmed7adnan,

    Disabling the responsiveness of the Theme is pretty tough thing to do. This Theme is developed with ‘Bootstrap Framework’, the most popular framework and it handles even the layouts and columns responsiveness by its core and rest are done with the Theme code.
    Though you managed to disable the responsiveness and stuck on the mobile menu toggle then please share us your Site URL so that we can provide you the appropriate Custom code by checking the recent preview of your Site.

    Thanks

    in reply to: width Web #80865

    Ok, you mean you want the full width along with sidebar layout.

    Please go to the ‘Appearance > Customizer > Additional CSS’ and paste below custom css code:

    @media (min-width: 1600px) {
    	.post-template-default .site-content .container,
    	.page-template-default:not(.woocommerce) .site-content .container {
    		max-width: 1540px;
    	}
    }
    @media (min-width: 1800px) {
    	.post-template-default .site-content .container,
    	.page-template-default:not(.woocommerce) .site-content .container {
    		max-width: 1740px;
    	}
    }

    Thanks

Viewing 15 posts - 451 through 465 (of 5,207 total)