Forum Replies Created

Viewing 15 posts - 7,501 through 7,515 (of 8,657 total)
  • Author
    Posts
  • in reply to: URL Notice link in new Tab #17754
    wensolutions
    Keymaster

    Glad to know your issue is resolved.

    Feel free to post your queries if you have any more issues in the future.

    Cheers !!

    in reply to: Blog post goes off page #17706
    wensolutions
    Keymaster

    Hello @adam40k,

    We have tested the code on our side and everything is working fine.

    Could you please kindly verify that the code is correctly inserted in the custom CSS field and that you have clicked “Save & Publish” button after entering the CSS.

    Regards!!

    in reply to: Blog post goes off page #17702
    wensolutions
    Keymaster

    Hello @adam40k,

    To change the site-title text font in your website you will need to go to your Admin Dashboard > Appearance > Customize > Theme Options > Advanced Options > Custom CSS field and paste the following Custom CSS code:

    .site-title > a {
        font-size: 33px;
    }

    You can change the “font-size” value as per your requirements to increase / decrease the site title text.

    Hope this resolves your issue,

    Best Regards !!

    in reply to: How can I view the html code for the front page #17694
    wensolutions
    Keymaster

    Hello @heff93

    Actually it is not recommended to edit the theme code directly to add the meta for SEO or for other purpose provide by the Google.

    If it is for this purpose you can try third party plugins like Yoast SEO

    (https://wordpress.org/plugins/wordpress-seo/)

    which can be of helpful to add the code in the header. Also such plugin automatically adds necessary information once after you install it as they are made almost compatible with any themes.

    Hope you understand.

    Regards!!!

    in reply to: Delete custom header and translate strings #17693
    wensolutions
    Keymaster

    Hello @unigofc,

    As much as we would like to help you, adding your “Privacy Policy Link” to the footer copyright text area requires customization to the theme files which is beyond the scope of this support forum.

    Please Kindly consider to Hire a Customizer for your custom customization task.

    Hope you would understand,

    Best regards !!

    in reply to: More Then 3 History #17692
    wensolutions
    Keymaster

    Glad we could help !!

    Please feel free to post your queries if you have any issues / suggestions or requests in the future.

    We would also appreciate if you could take some extra effort to review our free theme by going through this link :https://wordpress.org/support/theme/biography/reviews/#new-post

    Cheers !!

    in reply to: URL Notice link in new Tab #17685
    wensolutions
    Keymaster

    Hello @ITHQ

    Can you please post your site URL so that we can debug your issue in more details and provide you with some possible solution.

    Hope you understand.

    Regards!!!!

    in reply to: More Then 3 History #17645
    wensolutions
    Keymaster

    Hello @wingsnut25

    Latest Update has been released which is Version 1.9.
    Please update the theme to the latest version and if the issue still continues then please feel free to post the query.

    Hope the update will fix your all issues.

    Best Regards!!!

    in reply to: Can't remove Im good at or My Clients #17644
    wensolutions
    Keymaster

    Hello @wingsnut25

    Latest Update has been released which is Version 1.9.
    Please update the theme to the latest version and if the issue still continues then please feel free to post the query.

    Hope the update will fix your all issues.

    Best Regards!!!

    in reply to: URL Notice link in new Tab #17639
    wensolutions
    Keymaster

    Hello @ITHQ

    To open URL Notice Link and Powered by in Footer Options in new tab, you need to create and activate child theme for that.

    You can take reference from below link to create child theme.

    https://codex.wordpress.org/Child_Themes
    https://premium.wpmudev.org/blog/how-to-create-wordpress-child-theme/?utm_expid=3606929-81.6_x2aktJQ2qbOSnTRGna0w.0&utm_referrer=https%3A%2F%2Fwww.google.com.np%2F

    After successfully creating and activating child theme, the main within child theme’s folder would be style.css and functions.php.
    Now in your child theme’s functions.php file you need to copy and paste below additional code:

    
    function education_hub_get_notice_ticker_content(){
    
    		$tickers = education_hub_notice_ticker_details();
    		if ( empty( $tickers ) ) {
    			return;
    		}
    		ob_start();
    		?>
    		<div id="notice-ticker">
    			<div class="notice-inner-wrap">
    				<?php foreach ( $tickers as $key => $ticker ) : ?>
    					<div class="list">
    						<a href="<?php echo esc_url( $ticker['link'] ); ?>" target="_blank"><?php echo esc_html( $ticker['text'] ); ?></a>
    					</div>
    				<?php endforeach ?>
    			</div> <!-- .notice-inner-wrap -->
    		</div><!-- #notice-ticker -->
    		<?php
    		$output = ob_get_contents();
    		ob_end_clean();
    		return $output;
    
    	}
    	function education_hub_footer_copyright() {
    
    		// Check if footer is disabled.
    		$footer_status = apply_filters( 'education_hub_filter_footer_status', true );
    		if ( true !== $footer_status ) {
    			return;
    		}
    
    		// Footer Menu.
    		$footer_menu_content = wp_nav_menu( array(
    			'theme_location' => 'footer',
    			'container'      => 'div',
    			'container_id'   => 'footer-navigation',
    			'depth'          => 1,
    			'fallback_cb'    => false,
    			'echo'           => false,
    		) );
    
    		// Copyright content.
    		$copyright_text = education_hub_get_option( 'copyright_text' );
    		$copyright_text = apply_filters( 'education_hub_filter_copyright_text', $copyright_text );
    		if ( ! empty( $copyright_text ) ) {
    			$copyright_text = wp_kses_data( $copyright_text );
    			$copyright_text = education_hub_apply_theme_shortcode( $copyright_text );
    		}
    		// Powered by content.
    		$powered_by_text = education_hub_get_option( 'powered_by_text' );
    		$powered_by_text = apply_filters( 'education_hub_filter_powered_by_text', $powered_by_text );
    		if ( ! empty( $powered_by_text ) ) {
    			
    			$powered_by_text = wp_kses_post( $powered_by_text );	
    			$powered_by_text = education_hub_apply_theme_shortcode( $powered_by_text );
    		}
    	?>
    
        <?php if ( ! empty( $footer_menu_content ) ) :  ?>
    		<?php echo $footer_menu_content; ?>
        <?php endif ?>
        <?php if ( ! empty( $copyright_text ) ) :  ?>
          <div class="copyright">
            <?php echo $copyright_text; ?>
          </div><!-- .copyright -->
        <?php endif; ?>
        <?php if ( ! empty( $powered_by_text ) ) :  ?>
        <div class="site-info">
    		<?php echo $powered_by_text; ?>
        </div><!-- .site-info -->
        <?php endif; ?>
        <?php
    	}
    

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

    Best Regards!!!

    in reply to: Slide pictures get darken #17637
    wensolutions
    Keymaster

    Hello @delfinaki58,

    To make your slider images lighter to the way it was before please add the following Custom CSS to your Dashboard > Appearance > Customize > Theme Options > Custom CSS field :

    .evision-main-slider .thumb-overlay {
        background: none;
    }

    Hope this resolves your issues,

    Best Regards !!

    in reply to: Blog post goes off page #17636
    wensolutions
    Keymaster

    Hello @adam40k,

    We have inspected your page and it is seen that the “test” text you have entered is a single word with no spaces. Having text without spaces indicates it as a single word and therefore the theme displays it without breaking it.

    Please use relevant data that you would actually use in your website while testing. Dummy texts like Lorem ipsum provides a great ways to test contextual data for the website.

    However, if you still get the issue with the lorem ipsum dummy text please let us know and we will surely find a fix for the issue you are facing.

    Regards !!

    in reply to: Blog post goes off page #17568
    wensolutions
    Keymaster

    Hello @adam40k,

    We are sorry but we are having trouble understanding your issue correctly. Could you please provide us the site URL to the page you regarding your issue so that we can inspect your website and further debug?

    Hope you understand,

    Best Regards !!

    in reply to: Slider Not Working – Pro #17525
    wensolutions
    Keymaster

    Hello @dhotshotkid

    As much as we would love to help you the slider is working perfectly for us,so we would like to request you to send your backend login details at support[at]wensolutions.com to check if any settings has been set incorrectly.

    Best Regards!!!

    in reply to: Featured image for Video post #17449
    wensolutions
    Keymaster

    Hello @Dimi

    To remove the circle that has eye in it and leave only circle with chain (link) for only for this post’s featured image, you need add custom CSS.

    For this you need to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
    Here you need to copy and paste below CSS.

    
    article#post-68 .fa.fa-eye {
       display: none;
    }
    article#post-68 .post-item a{
       pointer-events: none;
    }
    article#post-68 .post-item .post-content a{
       pointer-events: all;
    }
    

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

    Best Regards!!!

Viewing 15 posts - 7,501 through 7,515 (of 8,657 total)