axlethemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Corporate Key] New Version changed too much without warningHi @kalesco
We have updated the theme to make compatible with Gutenberg and other page builders like Elementor.
On new version, You simply need to assign Front Page template for home page to show widgets.
Please go to Pages, Edit Home page and assign it Front Page template like shown here
Hope this will help you.
Thank you.
Forum: Themes and Templates
In reply to: [Best Commerce] Move Wishlist and Cart icons?Hi @samgreco
You can create child theme and customize theme as per your requirement.
Forum: Themes and Templates
In reply to: [Business Cast] Social MenuForum: Themes and Templates
In reply to: [Business Cast] Social MenuHi @kdickins
We have added icons based on the domain URL using CSS. If you add social media with complete link, it will automatically assign icon for it.
Forum: Themes and Templates
In reply to: [Business Cast] New Copyright FooterHi @kdickins
You do not need to remove any hook for it.
Copy
function business_cast_footer_copyright() {}
from theme-hook.php to functions.php of your child theme and make the changes you want.Forum: Themes and Templates
In reply to: [Business Cast] Moving masthead header.Hi @kdickins
Happy to help you and thanks for using our theme.
Forum: Themes and Templates
In reply to: [Business Cast] Moving masthead header.Hi @kdickins
It is not possible to move the site name to the actual navigation because site title and contact info at the right of it is rendered with the same hook.
Forum: Themes and Templates
In reply to: [Business Cast] Moving masthead header.Hi @kdickins
You can add following codes on
functions.php
of your child theme to change the order of top header and main header.function business_cast_change_header_order() { remove_action( 'business_cast_action_before_header', 'business_cast_add_top_head_content', 5 ); add_action( 'business_cast_action_after_header', 'business_cast_add_top_head_content', 10 ); } add_action( 'init', 'business_cast_change_header_order' );
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page TemplatesHi @kdickins
You do not need to copy entire slider code on child theme. Remove all the codes you are using to override slider and paste following code on functions.php of your child theme
function business_cast_check_slider_status( $input ) { $input = false; // Slider status. $featured_slider_status = business_cast_get_option( 'featured_slider_status' ); switch ( $featured_slider_status ) { case 'home-page': if ( is_page_template( 'templates/front.php' ) || is_page_template( 'templates/club.php' ) || is_page_template( 'templates/conference.php' ) || is_page_template( 'templates/education.php' ) || is_page_template( 'templates/program.php' ) || is_page_template( 'templates/research.php' ) ) { $input = true; } break; case 'disabled': $input = false; break; default: break; } return $input; }
Forum: Themes and Templates
In reply to: [Business Key] change post pageHi @auntiecam
Do you want to remove this part? https://prnt.sc/muxns7
If yes, do you want to remove it on single page or in the archive pages?
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page TemplatesHi @kdickins
Please send us zip of child theme you have created to our email id info(at)axlethemes.com
We will check it and try our best to help you.
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page TemplatesHi @kdickins
You are saying slider is working at club page. You have assigned club page to home page but there is no slider on your site.
Can you provide us temporary wp-admin login to your site?
Please add us as admin of your site using this email info(at)axlethemes.com
We will check your issue and try our best to solve it.
Forum: Themes and Templates
In reply to: [Business Cast] New Front Page TemplatesHi @kdickins
Can you please provide us your site URL?
Forum: Themes and Templates
In reply to: [Business Cast] BC Pages BlocksHi @drica100
Can you please send us screenshot of the section?
Forum: Themes and Templates
In reply to: [Business Cast] smaller opacity on the slide.Hi @drica100
You can go to Appearance > Customize > Additional CSS and add following CSS to reduce the opacity of slider overlay.
#main-slider article::before{ background: rgba(0, 0, 0, 0.25); }
Please change the last value (0.25) as per your requirement.