Forum Replies Created

Viewing 15 posts - 7,051 through 7,065 (of 8,657 total)
  • Author
    Posts
  • in reply to: Highlighting menu items #26418
    wensolutions
    Keymaster

    Hello @DB4Y,

    The theme primary navigation menu has the property to highlight on hover to the specific menu item and while active as you can see in the demo of the theme here : http://wenthemes.com/theme-demos/?demo=education-hub

    If your menu behavior is different than in the demo please explain the issue further with your website URL so that we could inspect the issue and provide a possible fix.

    Best Regards !!

    in reply to: Aligning site title and tagline text with Logo #26417
    wensolutions
    Keymaster

    Hello @DB4Y,

    By default the site title and tagline are vertically centered beside the logo, however the position depends upon the size of logo you have used as the site identity height is flexible in the theme.

    Please provide us your website URL so that we can inspect your website and provide you with a precise custom CSS for your site.

    Best Regards !!

    in reply to: Homesection "latest news" #26416
    wensolutions
    Keymaster

    Hello @jjthetutor,

    The “lorem ipsum” dummy text in the home page latest news section was displayed due to a missed glitch in the theme which has now been fixed with the theme update.

    Please update the theme to the latest version and your post excerpt will be shown in place of the dummy text resolving the issue.

    Best Regards !!

    wensolutions
    Keymaster

    Hello @jjthetutor,

    We appreciate your suggestion and will consider addressing the requests for the future updates.

    Suggestions from users are always appreciated as it is what helps us make our product better.

    Best Regards !!

    in reply to: Three dots #26358
    wensolutions
    Keymaster

    Hello @MichelleG

    To solve your issue at first you need to create a child theme. Below is the reference for creating a child theme.
    Child Theme

    After successfully creating and activating the child theme paste the following code in your functions.php file of the child theme

    You can also use the plugin to create the child theme . Please refer to the below link
    Child theme

    
    function biography_words_count( $length = 25, $biography_content = null ) {
    	$length = absint( $length );
    
        if ( '' != $biography_content ) {
    
            $biography_content = strip_shortcodes( $biography_content );
            $biography_content = str_replace( ']]>', ']]>', $biography_content );
            // $biography_content = strip_tags($biography_content, wpse_allowedtags());
    
            //Set the excerpt word count and only break after sentence is complete.
            $excerpt_word_count = $length;
            $excerpt_length = apply_filters( 'excerpt_length', $excerpt_word_count );
            $tokens = array();
            $excerptOutput = '';
            $count = 0;
    
            // Divide the string into tokens; HTML tags, or words, followed by any whitespace
            preg_match_all( '/(<[^>]+>|[^<>\s]+)\s*/u', $biography_content, $tokens );
    
            foreach ( $tokens[0] as $token ) {
    
                if ( $count >= $excerpt_word_count && preg_match('/[\,\;\?\.\!]\s*$/uS', $token ) ) {
                    // Limit reached, continue until , ; ? . or ! occur at the end
                    $excerptOutput .= trim( $token );
                    break;
                }
    
                // Add words to complete sentence
                $count++;
    
                // Append what's left of the token
                $excerptOutput .= $token;
            }
    
            $biography_content = trim( force_balance_tags( $excerptOutput ) );
    
            return $biography_content;
        }
    
        return apply_filters( 'biography_words_count', $biography_content );
    }

    Hope this will resolve your issue .

    You have any problem further please let us know.

    Best Regards!!

    in reply to: Video thumbnails on blog #26350
    wensolutions
    Keymaster

    Hello @marcsnyderman,

    With the current theme design, the theme requires the featured image to be assigned to the post for it to display the featured image thumbnail in the blog listing / home page latest posts sections.

    However, you can choose to use plugins designed specially for the task like : https://wordpress.org/plugins/automatic-featured-images-from-videos/

    This should provide you the feature you are looking for.

    Note : As the third party plugins are nor tested with the theme for compatibility, we cannot be fully assured that the plugin will be completely compatible with the theme.

    Hope this Helps,

    Best Regards !!

    in reply to: Purchased Pro Version and need to keep all customizations #26349
    wensolutions
    Keymaster

    Hello,

    All settings/ changes and website data will remain intact in the website while you upgrade to pro version of the Education Hub theme from the free theme.

    However if you have made any changes directly to the theme files the changes will be lost with the upgrade.

    Also, regarding the third party plugin you have used for modifications, the plugin will also remain intact with the theme switch and hence the changes made via plugins should also not be lost.

    Please explain us further the changes / methods you have made in the theme files so that we could guide you further to the upgrade.

    Hope this Helps,

    Best Regards !!

    in reply to: Page Attributes #26348
    wensolutions
    Keymaster

    Hello @tradewinds,

    While we have tested locally on our side the page attribute to choose the parent page is available in the the theme by default.

    You should not have any problems getting the page list in the page edit screen > Page Attributes Metabox. Please make sure you have multiple pages available to choose from in your website.

    Also,you can try choosing the parent for new pages and check to see if pages are available in the dropdown.

    Kindly verify the option by creating a new page and write back to us if the issue persists.

    Hope this Helps,
    Best Regards !!

    in reply to: Add image (with link) to Header #26347
    wensolutions
    Keymaster

    Hello @learningcommunity,

    As the theme currently does not have a custom widget area in the header currently the option to add image with link in the header is not available with the current layout of the theme.

    Although it is possible for you to achieve your request on the theme with advanced code customization of the theme, it might effect other parts of the theme, like its design and at times its functionality.

    It would be wise not to customize the code yourself if you do not have knowledge on programming,
    Our suggestion to you is to hire a professional developer for your customization, so that your theme will no be effected in any way.

    To hire a developer please follow the link below
    http://themepalace.com/hire-a-customizer/

    Best Regards !!

    wensolutions
    Keymaster

    Hello,

    The feature you are requesting is not available on the theme and as much as we would like to help you we are not able to as, the theme doesn’t support this customization and this is beyond the support offered for our products, which consists of bug fixing and theme documentation.

    Although it is possible for you to achieve your request on the theme with advanced code customization of the theme, it might effect other parts of the theme, like its design and at times its functionality.

    It would be wise not to customize the code yourself if you do not have knowledge on programming,
    Our suggestion to you is to hire a professional developer for your customization, so that your theme will no be effected in any way.

    To hire a developer please follow the link below
    http://themepalace.com/hire-a-customizer/

    We hope it helps,
    Best Regards.

    in reply to: Search button #26344
    wensolutions
    Keymaster

    Hello @pklima,

    The feature to change the search button text (“Search”) is not directly available in the theme Customizer currently. However, you can modify it with the child theme creation approach.

    To learn more about child themes see the link here : https://codex.wordpress.org/Child_Themes

    To automate the task of child theme creation you can also choose to use plugins like : https://wordpress.org/plugins/wp-child-theme-generator/

    After successful creation and activation of the child theme paste in the following code block in your child theme’s functions.php file :

    function education_hub_customize_search_form() {
    
    		$search_placeholder = education_hub_get_option( 'search_placeholder' );
    		$form = '<form role="search" method="get" class="search-form" action="' . esc_url( home_url( '/' ) ) . '">
          <label>
            <span class="screen-reader-text">' . _x( 'Search for:', 'label', 'education-hub' ) . '</span>
            <input type="search" class="search-field" placeholder="' . esc_attr( $search_placeholder ) . '" value="' . get_search_query() . '" name="s" title="' . esc_attr_x( 'Search for:', 'label', 'education-hub' ) . '" />
          </label>
          <input type="submit" class="search-submit" value="'. esc_attr_x( 'Search', 'submit button', 'education-hub' ) .'" />
        </form>';
    
    		return $form;
    
    	}

    After you have pasted in the code, find the line containing <input type="submit" class="search-submit" value="'. esc_attr_x( 'Search', 'submit button', 'education-hub' ) .'" /> and replace the word ‘Search’ with your desired text to show on the search button.

    Save your changes and the text will be changed in your website.

    Hope this Helps,

    Best Regards !!

    in reply to: Resizing Header for logo #26343
    wensolutions
    Keymaster

    Hello,

    The Education Hub Pro theme automatically sets the flexible height and width for the image used in logo upto 110 px in height.

    You increase the logo size by uploading the image of height larger than the max-height if you want to increase the logo image size in the header. To do so, please add the following custom CSS in your Admin Dashboard > Appearance > Customize > Theme Options > Advanced Options > Custom CSS field :

    .site-logo-link > img, .custom-logo-link img {
        max-height: 131px;
    }

    You can increase the value of max-height in px as per your image height / requirements to get a greater sized logo in the header.

    Hope this Helps,

    Best Regards !!

    in reply to: Resize Menu #26342
    wensolutions
    Keymaster

    Hello,

    You can add in the following custom CSS in your Admin Dashboard > Appearance > Customize > Theme Options > Advanced Options > Custom CSS field

    
    @media(min-width: 769px) {
    .main-navigation ul li li.menu-item-has-children > a::after, .main-navigation ul li li.page_item_has_children > a::after {
        top: 4px;
    }
    
    .main-navigation ul ul a {
        padding: 4px 7px;
    }
    
    .main-navigation ul li a {
        padding: 5px 12px;
    }
    
    .main-navigation ul li.menu-item-has-children > a::after, .main-navigation ul li.page_item_has_children > a::after {
        right: 14px;
        top: 6px;
    }
    
    .main-navigation ul ul {
        top: 34px;
    
    }
    }

    This will decrease the padding and spacing provided to the menu items initially by the theme making it sleek and should allow you some extra spaces for some extra tabs in the main navigation on desktop screens.

    Hope this Helps,

    Best Regards !!

    in reply to: Lighten banner image #26339
    wensolutions
    Keymaster

    Hello,

    To also remove the overlay from the header image, you can add the following custom CSS :

    #custom-header::after {
         background: none;
    }

    Hope this Helps,

    Best Regards..

    in reply to: Lighten banner image #26145
    wensolutions
    Keymaster

    Hello,

    To remove the overlay ( dark layer ) over the images in the main slider please paste in the following custom CSS in your Admin Dashboard > Appearance > Customize > Theme Options > Advanced Options > Custom CSS field :

    .so-widget-sow-hero  .sow-slider-base ul.sow-slider-images li.sow-slider-image::after {
    
    background: none!important
    
    }

    Hope this Helps,

    Best Regards !!

Viewing 15 posts - 7,051 through 7,065 (of 8,657 total)