Home › Forums › Pro Themes › Education Hub Pro › Problem in Mobile version: Quick Links and White space between header and menu
Tagged: font
- This topic has 35 replies, 3 voices, and was last updated 7 years, 10 months ago by froshdimeji.
-
AuthorPosts
-
January 3, 2017 at 1:42 am #27356froshdimejiParticipant
Uc browser and opera mini most of my visitors use this browser
January 3, 2017 at 1:56 am #27358wensolutionsKeymasterHello @froshdimeji,
We have tested your website on the UC Browser and the menu still seems to be working fine.
The difference that you have noticed might be because of the opening animation of the menu that is presented differently by the browsers.
Even with the slight change in animation behavior the menu is working fine and as expected and your users should not have any problems using the menu in the website.
Best Regards !!
January 3, 2017 at 4:36 pm #27421froshdimejiParticipantOk, if you say so.
Am also having issue with child theme, I have created child theme for.education hub on my website and currently using it but anytime I added a function or css to it, my goes off. It happen a time that, I can’t login into my website through wp admin that I have to login through cpanel.
And I follow the procedure stated at https://codex.wordpress.org/Child_Themes to create the child theme, please do you know why.
<?php
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );}
?>That is what I pasted into my child function.php but still not working
January 3, 2017 at 11:01 pm #27436wensolutionsKeymasterHello @froshdimeji,
Upon Inspection of the code you have provided it should be working fine with loading the parent styles but you are not loading the child theme’s style.css.
replace the code block with the one below :
<?php /** *Recommended way to include parent theme styles. *(Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme) */ add_action( 'wp_enqueue_scripts', 'education_hub_child_style' ); function education_hub_child_style() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',array('parent-style')); }
Also, please make sure you have added your respective CSS changes to the child theme’s style.css and the functions to the functions.php file.
Also, it is very important that you paste in the functions before the closing of the PHP ( “
?>
” tag ). We suggest that you remove the closing PHP tag from your functions.php file.If you are having further trouble creating and using the child theme manually, you can also automate the task with the Child theme generator plugin.
Hope this Helps,
Best Regards !!
January 4, 2017 at 1:10 am #27440froshdimejiParticipantI can’t thank you enough. I think I will try the pro version of the theme, thank you very much.
January 4, 2017 at 1:16 am #27441froshdimejiParticipantOk, I have one personal question, you know as to you, you earn through sales but I depend on ads marketing.
Do you think it a good idea to tackle the ad blocker browser “like to show visitors a notification to turn off ad blocking mode off on their browser whenever they have the ad blocking mode enable or to just forget about it and let ads display to people that are not on ad blocking mode. Am sorry for asking such question I know it doesn’t fall into the category but just need advice, thanks
January 4, 2017 at 6:31 am #27476wensolutionsKeymasterHello @froshdimeji,
The forum is dedicated to the support and bug fixing for our products and hence we cannot really help you with the advertisement strategies for the website.
However, in terms of User experience, it is never a good idea to completely block your visitors from your site contents because of Ad blocker use. The best way out would be to find a way to display the ads in less irritating way and let visitors to your website rather than blocking them away.
Best Regards !!
January 4, 2017 at 1:22 pm #27528froshdimejiParticipantThank you very much for your reply, really appreciated.
One more thing about the theme. Normally whenever I posted a new post, it display the time it was published both on front page and single page. please is it possible to also display the day the post was updated” like last updated on……, thank you.
January 4, 2017 at 11:22 pm #27580wensolutionsKeymasterHello @froshdimeji,
WordPress does support the feature you are looking for with the use of function
the_modified_date()
that can be used inside the_loop to get your desired output.If you are using the Child theme of Education Hub theme, you can try modifying your desired function to get the modified date in your desired function.
If you are not confident on code handling and need help further with the customization of the functions to get the desired output, please consider hiring a professional customizer for the custom task. to hire a customizer, please go through the link : http://themepalace.com/hire-a-customizer/
Hope this Helps,
Best Regards !!
January 5, 2017 at 1:07 am #27584froshdimejiParticipantThank you very much, I have do it, thanks again.
About the child theme again. if I wanted to edit a file in a folder do I have to copy the folder or just the particular file inside the folder that I wanted to edit thank you.
January 5, 2017 at 2:34 am #27598wensolutionsKeymasterHello,
The child theme usage does override the theme template files from the parent theme for the basic theme template files in the Template Hierarchy.
However, for all other files directly copying and pasting the parent directory does not work and might have function conflicts causing fetal errors in the website.
Also, please always be careful while using for the functions you are overriding via child themes.
Best Regards !!
January 5, 2017 at 12:45 pm #27634froshdimejiParticipantThanks for your time I think I will rest my case now, thank you, much appreciated
January 11, 2017 at 1:04 pm #28246froshdimejiParticipantHello, please anytime I used the <ins> tag, “instead of it to underline, it paint the text golden yellow, please how can I change that thanks
January 11, 2017 at 10:57 pm #28300wensolutionsKeymasterHello,
It is the theme default design in the Education Hub Pro theme that the
<ins>
tags are handled with the styling that gives the text background color.If you would like to change this, please add in the following custom CSS :
ins { background: none; text-decoration: underline; }
Hope this Helps,
Best Regards !!
January 12, 2017 at 1:42 am #28327froshdimejiParticipantOk thanks, please do you have a premium plugin that can be used to in calculations website, like if wanted to write something like x + y over z instead of using the ins tag, thanks
-
AuthorPosts
- You must be logged in to reply to this topic.