Forum Replies Created

Viewing 15 posts - 7,336 through 7,350 (of 8,657 total)
  • Author
    Posts
  • in reply to: boxed layout but showing fluid menu on scroll #21717
    wensolutions
    Keymaster

    Hello @franekzaz,

    To make your sticky menu stay within the boxed layout in Education Hub Pro theme, please go to your Admin Dashboard > Appearance > Customize > Theme Options > Advanced Options > Custom CSS field and paste in the following custom CSS :

    @media (min-width:1025px) {
    .enabled-sticky-primary-menu #main-nav.fixed {
        width: 86.7%;
        margin-left: 90px!important;
    }
    }

    Hope this Helps,

    Best Regards !!

    in reply to: News and Event widgets #21716
    wensolutions
    Keymaster

    Hello @jim,

    We apologize for the last time response, we did find a way to add the news and events section on top of the featured content for you.

    But this process is little lengthy and you will have to follow certain steps to make it work.

    So, first of all you will have to create a child theme for the theme you are using currently.
    You can use a simple child theme creating plugin like https://wordpress.org/plugins/wp-child-theme-generator/

    Now after you have created the child theme you can simply add the below given Code to your child themes function.php

    function education_hub_custom_change_order(){
    
     	remove_action( 'education_hub_action_before_content', 'education_hub_add_home_news_event', 8 );
    	remove_action( 'education_hub_action_before_content', 'education_hub_add_featured_content', 6 );
    
    	add_action( 'education_hub_action_before_content', 'education_hub_add_home_news_event', 6 );
    	add_action( 'education_hub_action_before_content', 'education_hub_add_featured_content', 6 );
    }
    
    add_action( 'init','education_hub_custom_change_order' );

    Hope it helps.
    Best regards.

    in reply to: Responsive menu #21714
    wensolutions
    Keymaster

    Hello,

    The feature you are requesting is not available on the theme currently 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: Missing: author / entry-title / updated #21712
    wensolutions
    Keymaster

    Hello,

    We are sorry that you are facing this issue,
    Please follow the below given links that might help fix your issue,
    Google structured data testing tool: https://search.google.com/structured-data/testing-tool/u/0/
    A guide on how you can possibly fix the issue: https://www.acceleratormarketing.com/trench-report/google-analytics-errors-and-structured-data/

    It does require a little read. ?
    Hope that helps.
    Regards.

    in reply to: News and Event widgets #21634
    wensolutions
    Keymaster

    Hello,

    We are sorry for the inconvenience but we are not able to completely understand your issue.

    We are assuming that you would want a third column on the news and event section, but we will not be able to do that for you because as much as we would love to help you, 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: Theme License #21631
    wensolutions
    Keymaster

    Hello @arman and @evachang,

    The theme license will expire after one year of purchase date, after the license expiry you can continue to use the theme but you will not be able to receive any future updates.

    The theme will not be blocked and it is yours to use freely, its just that you will be missing the updates but you can renew the theme anytime you like after your license has expired if you would like to receive any theme updates.

    Regards.

    in reply to: Front page color #21629
    wensolutions
    Keymaster

    Hello,

    Please add the below given CSS to
    Dashboard -> Appearance -> Customize -> Theme Options -> Advanced Option

    .home.page #main {
        background: #000000;
    }

    Hope it helps.
    Best regards.

    in reply to: Sticky Menu and Site Title #21592
    wensolutions
    Keymaster

    Changing the logo position requires additional code customization. As much as we would love to help you on this but free support only covers bug fix and documentation. You can consider hiring a customizer to get this customize for you.

    For menu positioning to center, you can try the following custom CSS

    .header-navigation li {
    padding: 0 65px;
    }

    Hoping this would help you.

    in reply to: Front page color #21587
    wensolutions
    Keymaster

    To change the homepage background color, use the following custom CSS. Paste it in Appearance -> Customize -> Theme Options -> Advance Options -> Custom CSS

    .home.archive-layout-masonry #main {
        background: #000000; /* black color*/
    }

    Note : You can change the HEX color value to your own choice.

    Hope this helps !

    in reply to: Make download resume button to load resume on separate tab #21581
    wensolutions
    Keymaster

    @niharikabalachandra,

    Please follow the given steps below.

    1. Create a Child Theme and activate it. Note : Or, use WP Child Theme Generator plugin to create a new child theme easily without any coding.

    2. Copy and paste the following code in your child theme’s functions.php .

    function biography_after_text_slider() {
        global $biography_customizer_all_values;
        $biography_header_contact_url = $biography_customizer_all_values['biography-header-contact-url'];
        $biography_header_contact_url_button_text = $biography_customizer_all_values['biography-header-contact-url-button-text'];
        $biography_header_resume_url = $biography_customizer_all_values['biography-header-resume-url'];
        $biography_header_resume_url_button_text = $biography_customizer_all_values['biography-header-resume-url-button-text'];
        if( empty( $biography_header_contact_url) && empty ( $biography_header_resume_url ) ){
            return;
        }
        ?>
        <div class="goest-btn">
            <?php
            if( !empty( $biography_header_contact_url) ){
                ?>
                <a class="button button-feature button-contact" target="_blank" href="<?php echo esc_url( $biography_header_contact_url ); ?>">
                    <?php echo esc_html($biography_header_contact_url_button_text);?>
                </a>
                <?php
            }
            if( !empty( $biography_header_resume_url) ){
                ?>
                <a class="button button-feature button-resume line-btn" target="_blank" href="<?php echo esc_url( $biography_header_resume_url ); ?>">
                    <?php echo esc_html($biography_header_resume_url_button_text);?>
                </a>
                <?php
            }
            ?>
        </div>
        <?php
    }

    3. Finally, Download button will open in new tab.

    Let us know if you have any problem.

    in reply to: Update of theme? #21579
    wensolutions
    Keymaster

    @gedbrockie,

    Thank you so much for your queries.

    Your feedback and queries are really very appreciating and definitely helpful for us to improve and come up with the new ideas like such in coming updates.

    Yes, definitely we would think of adding more options for blog posts both in terms of display layout and other extra features and options in coming releases.

    Thank you for patience in advance till we be working to come up with more exciting features in newer version updates in near future.

    in reply to: Logo #21578
    wensolutions
    Keymaster

    Yes this possible. You can paste the following custom CSS in custom CSS field.

    .search-form .search-submit {
        background: none !important;
    }
    in reply to: Contact Form #21489
    wensolutions
    Keymaster

    Contact Form bug has been fixed in the latest version. Please update your theme to the latest available version.

    in reply to: Logo Centered, Testimonial Widget, Slider Caption #21477
    wensolutions
    Keymaster

    Hello @stjosephschool,

    We have inspected your website and it is seen that the site still consists the previous CSS for the slider caption along with the new one.

    Please remove All of the above CSS and add the following CSS code to fix the issues in the site branding and the slider section :

    @media (min-width:1025px) {
    .site-branding {
        padding-left: 32%;
    }
    
    #main-slider .cycle-caption {
        margin-top: 161px;
    }
    }

    The CSS will resolve both the site heading and the slider issues on desktop / mobile view. However, please make sure you remove the above CSS before adding the new Custom CSS.

    Hope this helps,
    Best Regards !!

    in reply to: Slider link button functionality #21475
    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.

Viewing 15 posts - 7,336 through 7,350 (of 8,657 total)