Forum Replies Created
-
AuthorPosts
-
Theme Horse Support Team
KeymasterHi lukyeslu,
First Create a New Folder with ‘newscard2’ on Theme Directory (Here we are giving you example for Child Theme as ‘newscard2’). Then inside ‘newscard2’ directory, create a ‘function.php’ with the content below.
<?php add_action( 'wp_enqueue_scripts', 'newscard2_enqueue_child_styles' ); function newscard2_enqueue_child_styles() { $parent_style = 'newscard-style'; wp_enqueue_style( 'bootstrap-style', get_template_directory_uri().'/assets/library/bootstrap/css/bootstrap.min.css', array(), '4.0.0'); wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'newscard2', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } require get_stylesheet_directory() . '/xyz.php';
you can link your one are more file like xyz.php with customized code in it.
also create a style.css file on Child Theme directory ‘newscard2’ with content below.
/*! Theme Name: NewsCard2 Theme URI: https://www.themehorse.com/themes/newscard Author: Theme Horse Author URI: https://www.themehorse.com/ Description: NewsCard Child Theme Template: newscard Version: 1.0.0 Requires PHP: 5.2 Tested up to: 5.5.3 License: GNU General Public License v3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html Text Domain: newscard2 Tags: blog, entertainment, news, two-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-logo, custom-menu, featured-image-header, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready */
Now you can customize the Theme with any style with style.css file.
For more you can find the easy guide and tutorials for creating Child Theme on different blogs or on official WordPress.org
Thanks
Theme Horse Support Team
KeymasterHi Flow,
It’s Great that you figure out the issue.
Please let us know if you have any other queries regarding the Theme.
Thanks
Theme Horse Support Team
KeymasterHi themehorse6,
Our Theme Interface already supports ‘Font Awesome 4.7.0’. You can use the icons listed on the link.
To use the Fontawesome Icons you have use through Custom HTML. on page/post editor or the Blocks features you will find to use as Custom HTML.
Like for check icon you can use the HTML code<i class="fa fa-check" aria-hidden="true"></i>
as mentioned hereThanks
Theme Horse Support Team
KeymasterHi aludell,
Thank you for the Interest to use our Theme.
Please request the demo content to our support team here. They will provide and set dummy data into your site same like our demo site.
Thank you!
Theme Horse Support Team
KeymasterHi infostringrecords,
We have managed to provide you the code to fit to 1280 X 720.
Please go to ‘Appearance > Customize > Additional CSS’ and Paste the below custom CSS Code.
.post-wrap .post-img-wrap:before, .page-single-img-wrap:before, .featured-stories .post-img-wrap:before, .site-footer .post-img-wrap:before, .site-footer .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap:before { padding-top: calc(56% + 1px); display: block; } @media (min-width: 992px) { .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap { height: 100%; } .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap:before { padding-top: calc(56% + 1px); display: block; } } @media (max-width: 767px) { .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap { height: 100%; } .widget-area .newscard-widget-horizontal-vertical-posts .post-boxed.main-post .post-img-wrap:before { padding-top: calc(56% + 1px); display: block; } }
Thanks
Theme Horse Support Team
KeymasterHi hassanbhai7771,
Thanks for the interest to use our Theme. Switching the Theme is very easy. You can do it from “Appearance > Theme” then click on ‘Add New’ on top and search for “NewsCard” on search field. After finding the ‘NewsCard’ on list click ‘Install’ then click on ‘Activate’.
Switching The Theme won’t loose your Posts and Pages of your Site. Only the customizer option and setting will be different for every themes so after switching the Theme you need to set the setting and option.
You can check our the Documentation and Instruction for help.
also you can get help from our ‘Video Tutorial’ to set ‘Front Page Template’.Please let us know if you have any queries about the Theme.
Thanks
Theme Horse Support Team
KeymasterHi,
Yes we checked. Not only after refreshing the page but there are 5 widgets assigned with google ads in right section. This is not the issue with our theme. Every Widgets have some random classes like ‘odd’, even’, odd’, ‘even’ and ‘odd’. and we haven’t coded like that in our theme. It is controlled by the plugin that you have used for showing google ads.
Thanks
Theme Horse Support Team
KeymasterHi Oluwatosin Ige,
We do understand your requirement but it cannot be done through Custom CSS code. All you can do is, You can create a new Category where you can assign the posts that you want to show on “Latest Post” or for the “More Posts” then you can shown through that new category by choosing the category from the list in customizer.
Thanks
Theme Horse Support Team
KeymasterHi Fabrice Mutekano,
We are sorry, it cannot be done just through Custom CSS code even this will be the new feature for the Theme and it needs code customization. You really need to hire a developer to customize the code for you.
Make sure you customize the Theme code only after making Child Theme so that you won’t loose the customized code when updating the Theme to a newer Version in future.
ThanksTheme Horse Support Team
KeymasterHi chad2,
Please login to your account and you will find the latest updated file under the downloads link.
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!
Theme Horse Support Team
KeymasterPlease copy the code again and paste as instructed before. We have made some changes on the previous code.
Thanks
Theme Horse Support Team
KeymasterHi Max Edelman,
We think you have solved the issue, featured image is showing for the post now, right? And sorry for the featured image caption cannot be shown.
Thanks
Theme Horse Support Team
KeymasterHi Fabrice Mutekano,
After updating the Image file please also make same changes on the URL link the publish button will be active.
Thanks
Theme Horse Support Team
KeymasterPlease Update the Theme to a Newer Version 1.1.7. Login to your Account and you will the latest Version under Downloads. After updating the Theme you will find the ‘Advertisement Code’ option under ‘Header’
Thanks
Theme Horse Support Team
KeymasterThough ‘auto’ value might work but the script parameter is defined for ‘left’ or ‘right’, better to set the value as ‘right’ or ‘left’.
Thanks
-
AuthorPosts