Forum Replies Created
-
AuthorPosts
-
wensolutions
KeymasterHey,
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!!
wensolutions
KeymasterHello @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!!
wensolutions
KeymasterHello @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
wensolutions
KeymasterHello,
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 withelseif( '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">→</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.
wensolutions
KeymasterHello,
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.
wensolutions
KeymasterHello,
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.wensolutions
KeymasterYes, 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.
wensolutions
KeymasterHello,
Please make a child theme to keep your changes safe add the following code on your child themes function.php filefunction 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
wensolutions
KeymasterHello @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!!!
wensolutions
KeymasterHello @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!!!
wensolutions
KeymasterHello @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!!!
wensolutions
KeymasterTo 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.
wensolutions
KeymasterYour 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.
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 .
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 !
-
AuthorPosts