Forum Replies Created

Viewing 15 posts - 7,981 through 7,995 (of 8,657 total)
  • Author
    Posts
  • in reply to: Xing social icon doesn't work #9677
    wensolutions
    Keymaster

    Hello @edu_horse

    For social icon of the network Xing to be displayed you need to add custom CSS.
    To add custom CSS you need to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
    Here you need to copy and paste below CSS.

    .education_hub_widget_social ul li a[href*="xing.com"]:before {
        content: "\f168";
    }
    .education_hub_widget_social ul li a[href*="xing.com"]:hover {
        background-color: #006464;
    }
    

    Hope this will help to resolve your issue.
    Let us know how it goes.

    Regards!!!

    in reply to: HELP!! Making the featured Content images a hyperlink.. #9675
    wensolutions
    Keymaster

    Hello @Groupeilboudo

    To make your featured content area image clickable you need to follow the steps below:
    First you need to create and activate child theme. Reference here for child theme.
    https://codex.wordpress.org/Child_Themes

    After successfully creating the child theme of this theme you need to add below code in functions.php file.

    
    function education_hub_render_featured_content( $content_details = array() ) {
    
    		if ( empty( $content_details ) ) {
    			return;
    		}
    		?>
    		<div id="featured-content">
    			<div class="container">
    				<div class="inner-wrapper featured-content-column-<?php echo absint( count( $content_details ) ); ?>">
    				<?php foreach ($content_details as $content ): ?>
    					<article>
    						<header class="entry-header"><h2 class="entry-title"><a href="<?php echo esc_url( $content['url'] ); ?>"><?php echo esc_attr( $content['title'] ); ?></h2></header>
    						<?php if ( ! empty( $content['images'] ) ): ?>
    							<img src="<?php echo esc_url( $content['images'][0]); ?>" alt="<?php echo esc_attr( $content['title'] ); ?>" width="<?php echo esc_attr( $content['images'][1]); ?>" height="<?php echo esc_attr( $content['images'][2]); ?>" /></a>
    						<?php endif ?>
    						<div class="entry-content">
    							<p><?php echo $content['excerpt']; ?></p>
    						</div>
    					</article>
    				<?php endforeach ?>
    				</div>
    			</div>
    		</div>
    
    		<?php
    
    	}
    

    By now it should be done.
    Hope this will help to resolve your issue.
    Let us know how it goes.

    Regards!!!!

    in reply to: How to make a different primary menu on Home. #9613
    wensolutions
    Keymaster

    Hello @meril

    Sorry to inform you that currently the theme doesn’t have option for different menu for home page only.

    However you can register a menu in functions.php file and need to play with some code in inc / hook / custom.php file inside education_hub_add_primary_navigation() function.

    Alternatively, for you particular need you can always hire a customizer.
    Fill up the form and send your details to hire a customizer http://wensolutions.com/#hire-customizer-form.

    Hope this will give you some hint.

    Regards!!!

    in reply to: Theme Licence problem #9612
    wensolutions
    Keymaster

    Hello,

    The answer to your question has been provided on the site’s FAQ section.

    Please check it here
    http://themepalace.com/faq/#automatic-theme-updates

    Visit the link and see the 5. Purchase/Renew section.
    Best regards.

    in reply to: Reduce space between navigation menu and web pages #9611
    wensolutions
    Keymaster

    Hello,

    Please try and add the following custom css to

    Dashboard -> Appearance -> Customize -> Theme Options -> Advanced Options.

    body:not(.home) #sidebar-primary {
        margin-top: 30px;
    }

    and adjust the margin-top value accordingly.
    I hope this will solve your issue.
    Best regards.

    in reply to: Home page #9608
    wensolutions
    Keymaster

    Hello @kssgold

    Sorry to hear that you have problem creating the home page.
    You can get some help from the documentation of the theme here http://themepalace.com/theme-instructions/education-hub/

    If you didn’t find any solution regarding your problem in documentation then feel free to post your query.
    You query should be a bit clear in which portion or part you are getting problem.

    We would be glad to help you.

    Regards!!!

    in reply to: Navigation Menu Wraps #9598
    wensolutions
    Keymaster

    Hello @mckormack@gmail.com

    Please try and add the following custom css to

    Dashboard -> Appearance -> Customize -> Theme Options -> Advanced Options.

    
    .main-navigation ul li a {
        font-size: 14px;
        padding: 10px 10px;
    }
    

    Hope this will help you.
    Let us know how it goes.

    Regards!!!

    in reply to: Navigation Menu Wraps #9596
    wensolutions
    Keymaster

    Hello @mckormack@gmail.com

    By inspecting your site we have found that currently you have only four menus on the site.
    So we need to situation of the menu appearing in two rows.
    Can you please put down all your menus you wanted and then we will be able to provide you with best solution.

    Hope this will help.

    Regards!!!

    in reply to: Navigation Menu Wraps #9592
    wensolutions
    Keymaster

    Hello @mckormack@gmail.com

    Your site URL seems to be in construction mode so we are unable to give you the exact solution.
    Please fix your site so that we can debug you issue and provide you with some possible solution.

    And @edu_horse

    Please provide you site URL.

    Regards!!

    in reply to: Re-arrange sections on homepage #9589
    wensolutions
    Keymaster

    Hello,
    The feature you are requesting requires great deal of customization, for which hiring a developer is necessary.

    So to hire a developer for customization please follow, the given link
    http://wensolutions.com/#hire-customizer-form

    And for the content of the featured section, you need to edit the excerpt code i.e $contents[ $cnt ]['excerpt'] = education_hub_the_excerpt( apply_filters( 'education_hub_filter_featured_content_excerpt_length', 40 ), $post ); code wrapped inside the function education_hub_get_featured_content_details in featured-content.php ( /inc/hooks/featured-content.php ) file through your Child Theme.

    Hope this helps.
    Best regards.

    in reply to: Reduce space between navigation menu and web pages #9585
    wensolutions
    Keymaster

    Hello,

    Please try and add the following custom css to

    Dashboard -> Appearance -> Customize -> Theme Options -> Advanced Options.

    .site-content {
        margin-top: -90px;
    }

    and adjust the margin-top value accordingly.
    I hope this will solve your issue.
    Best regards.

    in reply to: Different Menu #9578
    wensolutions
    Keymaster

    If the requirement we have understood here is correct then here is a small hints for you to remove the current Bizlight Pro menu from your website header.

    Hints : You need to edit (remove ) the menu code wrapped inside the function bizlight_header in header.php ( /inc/hooks/header.php ) file through your Child Theme.

    Hope this helps !!. Thank you!

    in reply to: Reduce space between navigation menu and web pages #9576
    wensolutions
    Keymaster

    If possible, it would be quite easier for us to specifically debug this issue if you can post in your site URL here.

    in reply to: Can't Activate License Key #9575
    wensolutions
    Keymaster

    Please read this blog tutorial to activate the theme license key.

    http://themepalace.com/tutorials/activate-themes-license/

    Or, fill up Update Key Support Form for direct support if you still have the problem in implementing API key.

    Thank you!

    in reply to: Inserting Pictures In Testimonial Section #9574
    wensolutions
    Keymaster

    @tmharish, answer to your query will be posted once after you open a new ticket in http://themepalace.com/forum/biography-pro/ forum . Sorry for an inconvenience as it is the forum rule.

    Thank you.

Viewing 15 posts - 7,981 through 7,995 (of 8,657 total)