Forum Replies Created

Viewing 15 posts - 8,206 through 8,220 (of 8,657 total)
  • Author
    Posts
  • in reply to: Several Bugs Or Changes #6997
    wensolutions
    Keymaster

    Hey,

    Sorry for the misunderstanding. Now I think I have understood what you were trying to tell.
    Try below custom CSS and let me know how it goes.

    
    .entry-content a {
       color: #0000FF !important;
    }
    

    And remove below code you have added:

    
    h2.entry-title a {
    color: #0073AA !important;
    }
    

    Hope this will work.

    Best Regards!!

    in reply to: Several Bugs Or Changes #6995
    wensolutions
    Keymaster

    Hello @frozn

    The plugin seems to be responsive just your text seems to be a bit longer to be fit in the box.
    There is setting in plugin to change the font-size. Once try keeping the font-size a bit smaller and check you site in responsive view whether the issue is fixed or not.

    And for the CSS to change the links for the post. You query seems to be a bit confusing. But will give answer from my-side.
    If you want to change the color of the links in blog post then the CSS will be below:

    
    h2.entry-title a {
        color: #0073AA !important;
    }
    

    And if you want the links color to be changed only when you hover the mouse then the below CSS will work.

    
    h2.entry-title a:hover {
        color: #028484!important;
    }
    

    Change the HEX value of color into the color of your choice.

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

    Best Regards!!

    in reply to: Can't update!!! #6991
    wensolutions
    Keymaster

    Hello @Brattis, we have just verified it and now it should be showing the upgrade info. Please confirm it in your account dashboard.

    If still the problem exist, please let us know. Sorry for the trouble.

    Thank you

    in reply to: Several Bugs Or Changes #6987
    wensolutions
    Keymaster

    Hello,

    Hope you are having a good day,

    We have listed the answer to your issues listed above respectively,

    #1 For the slider you can disable the arrow form Dashboard => Appearance => Customize => Home/Front Page Featured Slider => Slider Options=> and finally disable the enable control option .

    #2 For the service section, the problem you are having is unusual, you can try and add a blank page to the service section first with only featured image and a sentence of content just to check if it is not the issue with your current page. If a new page will not have the issue, please fix the contents of the old page and add it again.

    #3 About the plugin the, yes you can use the plugin please check and tell us how it goes.

    And about your requests

    #1 For the color and bigger text on your blog page you can add the following css code on Dashboard => Appearance =>Customize=> Theme Options => Custom css =>

    
    h2.entry-title a {
       color: #337AB7 !important;
    }
    .entry-content {
        font-size: 20px;
    }
    
    

    #2 For the image link leading to the detail post you will have to first build a child theme so you can keep your changes safe even after an update, to know about child theme check codex.wordpress.org/Child_Themes
    Then on your child theme directory, make a folder called template-parts and copy the content.php form parent theme to the child themes template-parts folder. Next you will have to open the file and replace the code from line number 37 – 75 with

    
    elseif( 'thumbnail-and-full-post' == $bizlight_archive_layout ){
        if( 'left' == $bizlight_archive_image_align ){
        echo "<div class='image-left'> <a href= '".esc_url( get_permalink() )."' rel='bookmark'>";
        the_post_thumbnail('medium');
        echo "</a>";
    }
    elseif( 'right' == $bizlight_archive_image_align ){
    echo "<div class='image-right'><a href= '".esc_url( get_permalink() )."' rel='bookmark'>";
    the_post_thumbnail('medium');
    echo "</a>";
    }
    else{
     echo "<div class='image-full'><a href= '".esc_url( get_permalink() )."' rel='bookmark'>";
    the_post_thumbnail('full');
    echo "</a>";
    }
    echo "</div>";/*div end*/
    the_content( sprintf(
    /* translators: %s: Name of current post. */
    wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'bizlight' ), array( 'span' => array( 'class' => array() ) ) ),
    the_title( '<span class="screen-reader-text">"', '"</span>', false )
    ) );
    }
    else{
    if( 'left' == $bizlight_archive_image_align ){
    echo "<div class='image-left'><a href= '".esc_url( get_permalink() )."' rel='bookmark'>";
    the_post_thumbnail('medium');
    echo "</a>";
    }
    elseif( 'right' == $bizlight_archive_image_align ){
    echo "<div class='image-right'><a href= '".esc_url( get_permalink() )."' rel='bookmark'>";
    the_post_thumbnail('medium');
    echo "</a>";
    }
    else{
    echo "<div class='image-full'><a href= '".esc_url( get_permalink() )."' rel='bookmark'>";
    the_post_thumbnail('full');
    echo "</a>";
    }

    Finally for the last question i.e #4

    Yes, that could be possible but might need design workarounds and twists. If you have CSS coding ideas you can try and tweak that accordingly.

    Hope this helps best regards.

    in reply to: Several Bugs Or Changes #6962
    wensolutions
    Keymaster

    Hello,

    Sorry for the issue you are dealing with but normally the theme doesn’t loose its settings after the update.
    You can try re-setting up your website and see if it solves the issue or not.
    Further more , can you please verify the bugs and necessary improvements you listed earlier and see if those points still exist or have been solved on the new update.

    Best regards.

    in reply to: Several Bugs Or Changes #6954
    wensolutions
    Keymaster

    Hello,
    Thank you for your effort on making the theme better ,
    But you are currently using old version of the theme, if you upgrade to pro you can see that most of your issues have been fixed.

    If after the update you happen to find more bugs and improvements to be made, please let us know
    we will get back to you as soon as possible.

    Have a good day.
    Best regards.

    in reply to: Slider affects and services section icons #6952
    wensolutions
    Keymaster

    Yes, we have made some improvements in the slider section replacing the previous jQuery slider limitation that we had. As you might notice some design improvements in slider navigation / pagination as well.

    Now regarding ‘auto play’ action in the slider, try to check and then uncheck and Save the option from the customizer section. Sometimes this could be the reason as the value might not get updated into the database after upgrading theme.

    Let us know if you still have this issue.

    in reply to: How to change length of text in slider #6951
    wensolutions
    Keymaster

    Hello,
    Please make a child theme to keep your changes safe add the following code on your child themes function.php file

    function education_hub_get_slider_details( $input ) {
    
    		$featured_slider_type   = education_hub_get_option( 'featured_slider_type' );
    		$featured_slider_number = education_hub_get_option( 'featured_slider_number' );
    
    		switch ( $featured_slider_type ) {
    
    			case 'featured-page':
    
    				$ids = array();
    
    				for ( $i = 1; $i <= $featured_slider_number ; $i++ ) {
    					$id = education_hub_get_option( 'featured_slider_page_' . $i );
    					if ( ! empty( $id ) ) {
    						$ids[] = absint( $id );
    					}
    				}
    				// Bail if no valid pages are selected.
    				if ( empty( $ids ) ) {
    					return $input;
    				}
    
    				$qargs = array(
    					'posts_per_page' => esc_attr( $featured_slider_number ),
    					'no_found_rows'  => true,
    					'orderby'        => 'post__in',
    					'post_type'      => 'page',
    					'post__in'       => $ids,
    					'meta_query'     => array(
    						array( 'key' => '_thumbnail_id' ), // Show only posts with featured images.
    					),
    				);
    
    				// Fetch posts.
    				$all_posts = get_posts( $qargs );
    				$slides = array();
    
    				if ( ! empty( $all_posts ) ) {
    
    					$cnt = 0;
    					foreach ( $all_posts as $key => $post ) {
    
    						if ( has_post_thumbnail( $post->ID ) ) {
    							$image_array = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'education-hub-slider' );
    							$slides[ $cnt ]['images']  = $image_array;
    							$slides[ $cnt ]['title']   = esc_html( $post->post_title );
    							$slides[ $cnt ]['url']     = esc_url( get_permalink( $post->ID ) );
    							$slides[ $cnt ]['excerpt'] = education_hub_the_excerpt( apply_filters( 'education_hub_filter_slider_caption_length', 50 ), $post );
    
    							$cnt++;
    						}
    					}
    				}
    				if ( ! empty( $slides ) ) {
    					$input = $slides;
    				}
    
    			break;
    
    			default:
    			break;
    		}
    		return $input;
    
    	}

    then change the number besides ‘education_hub_filter_slider_caption_length’ which is now 50 to your required number of words you want to show.

    Hope this helps

    in reply to: Header color on pages #6914
    wensolutions
    Keymaster

    Hello @CTUCSCL

    To change the header color, the one that shows the navigation link you need to go to Admin Panel / Appearance / Customize / Colors / Basic Colors Options you will see Primary Color. From here you can change the navigation header color.
    Note: As this color is primary color option, this color will come in several places of your site, please select color according to your site.
    If you are not satisfied with this solution please let me know.

    Best Regards!!!

    in reply to: Home Page Services Section #6873
    wensolutions
    Keymaster

    Hello @pixelconsult

    By inspecting your site it is seen that your are using old version of Bizlight pro theme.
    Please update the theme to latest version.
    If the issue still continues the please feel free to report.

    Best Regards!!!

    in reply to: In About Section how can I remove all options #6828
    wensolutions
    Keymaster

    Hello @CTUCSCL

    If you would like to keep the Logo and About us description and just remove the About selection options, then the temporary fix will be with simple custom CSS.
    For this you need to go to Admin Panel / Appearance / Customize / Theme Options / Custom CSS.
    In this section copy and paste following CSS.

    
    .about-list {
        display: none;
    }
    

    Hope this will help to resolve your problem.
    Let me know how it goes.

    Best Regards!!!

    in reply to: Navigation Bar does not move down with screen #6805
    wensolutions
    Keymaster

    To receive an automatic update notificationyYou need to have license key activated in your admin dashboard. You can obtain key in your My Account dashboard at Theme Palace.

    Read it more from FAQs section to know more in detail.

    http://themepalace.com/faq/#automatic-theme-updates

    in reply to: Change display of Image size of Sliders #6767
    wensolutions
    Keymaster

    Your site is using the free version of the theme. Please install and activate the premium version to get the license input field for your theme.

    in reply to: Navigation Bar does not move down with screen #6757
    wensolutions
    Keymaster

    @CTUCSCL, problem seems to be of the old version of the theme you are using . Please upgrade it to the latest version 2.0.7 .

    in reply to: In About Section how can I remove all options #6755
    wensolutions
    Keymaster

    @CTUCSCL, this is easy to do from customizer section. Go to Appearance -> Customize -> Home / Front About Section -> About Enable Option section and uncheck the checkbox option and you are done !

    Hope this helps !

Viewing 15 posts - 8,206 through 8,220 (of 8,657 total)