KafleG
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hatch] Place social icons on home pageHello,
For sharing purpose there are lots of plugin available on WordPress plugin repository. So please find the needed plugin and use it. In case of social link where you need it instead of footer? Let me know about it. I will try to help you.
ThanksForum: Themes and Templates
In reply to: Remove Page titleHello, if you want to remove the page title form the page, find
page.php
file and remove or comment the code<?php the_title(); ?>
. Try once and if not work let me know.Note: Child theme is recommended to customize theme.
ThanksForum: Themes and Templates
In reply to: Permanently edit Twenty Fifteen FooterHello,
While editing theme, you have to use the Child theme approach. If you edit the parent theme directly, the edited content will roll back after the theme update. So make the child theme and make the changes on it. Editing parent theme is bad practice too.
Hope, u know me. If you have further more question to ask or need more help feel free to ask.
ThanksForum: Themes and Templates
In reply to: [Customizr] Adding more categories to main pageHello, if i gave you code and if any small error occur it may cause a big problem for solving that issues. So it would better to hire a customizer to do this, it would be better for you. Its not a simple task because you have to write some CSS code also. I recommend you to hire a customizer for better solution.
ThanksForum: Themes and Templates
In reply to: [Customizr] Adding more categories to main pageHello,
If you need another category post on home page, try by making the custom template for home page and call the required category there. For example if you want to add another category called “Advertise”, use WP Query to call that category on home page. The best approach is by making a custom template because now front page displays all post you created.
Try once, if you need more question to ask or need help, feel free to ask. I will do my best to help you.
ThanksForum: Themes and Templates
In reply to: Blog section scrollingHello,
I think you are using the premium version of theme. So please ask your issue on its own support forum. This forum is only for free theme support.
ThanksForum: Themes and Templates
In reply to: [Theme Sydney] no animation showing :(Hello,
This error may be arise due some conflicts on JS. So you first recognized the problem and need to fix it through the code. I think there is no any plugin available for that. I only mentor you about the problem because i can’t edit code, i can just instruct you. If you need more help from me feel free to contact.
ThanksForum: Themes and Templates
In reply to: [Mediaphase Lite] Opening social media link in new tabHello,
If your issue is solved, please mark this ticket as resolved.
ThanksForum: Themes and Templates
In reply to: [Mediaphase Lite] Opening social media link in new tabEditing theme from dashboard is bad practice because sometimes site may down showing error. And the other main thing is editing parent theme is not best practice. If you edit the theme, and when the update version of theme comes and theme update, all the changes made by you will loss. So use FTP to edit the theme files and always work on child theme for theme customization. If you need any help feel free to ask. I will try to help you as possible.
ThanksForum: Themes and Templates
In reply to: [Mediaphase Lite] Opening social media link in new tabHello,
This social sharing is managed from “Team Member Widget” and to enable the open in new tab you have to add a line of code onteam-member-widget.php
. If you are familiar with code addtarget="_blank"
on line number 41. If you feel any confusion, feel free to ask.
Note: Child theme is recommended to customize theme.
ThanksForum: Themes and Templates
In reply to: Change image below headerHello,
That section is managed by widget area called banner. You can add the widget there for slider or other widget with your need. Go to Appearance > widget > banner and try by adding widget there. If that widget area remains empty fallback image appear there.
If you feel any confusion, feel free to ask.
ThanksForum: Themes and Templates
In reply to: [Naturo Lite] Custom post typesHello,
You can add any custom post type on theme. If you are familiar with codes, it is easy to add custom post type with functions file. If you are not able to play with code, find the plugin for custom post type and use it.
If you have any further query feel free to ask.
ThanksForum: Themes and Templates
In reply to: Change textHello,
Are you editing the parent theme or using Child theme? If you are using the child theme approach you have to make the file content directory same as parent theme on child theme. Example if file.php is in inc/assets/etc in parent theme, you have to make the same path on child theme. And don’t forget to activate child theme. If you feel any confusion feel free to ask.
ThanksForum: Themes and Templates
In reply to: [Theme Sydney] no animation showing :(Hello,
Some JS error is showing on your site console. Animation issue may be affected due to this error. Please try to solve the console error. First solve this error and if not work again let me know, i will try the another way to help you.
ThanksForum: Themes and Templates
In reply to: Want to Apply CSS Style to Certain Categories but not othersHello,
Make a separate CSS file and enqueue CSS file based on the category. For example,if ( in_category('mouse', $post->ID)) { wp_enqueue_script('mousescript'); }
Please find the details info here.
If you have any more question to ask, feel free for that. I will try my best to help you.
Note: Child theme is recommended to customize theme.Thanks