Home Forums Pro Themes Education Hub Pro Problem in Mobile version: Quick Links and White space between header and menu

Tagged: 

Viewing 15 posts - 16 through 30 (of 36 total)
  • Author
    Posts
  • #27356
    froshdimeji
    Participant

    Uc browser and opera mini most of my visitors use this browser

    #27358
    wensolutions
    Keymaster

    Hello @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 !!

    #27421
    froshdimeji
    Participant

    Ok, 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

    #27436
    wensolutions
    Keymaster

    Hello @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 !!

    #27440
    froshdimeji
    Participant

    I can’t thank you enough. I think I will try the pro version of the theme, thank you very much.

    #27441
    froshdimeji
    Participant

    Ok, 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

    #27476
    wensolutions
    Keymaster

    Hello @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 !!

    #27528
    froshdimeji
    Participant

    Thank 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.

    #27580
    wensolutions
    Keymaster

    Hello @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 !!

    #27584
    froshdimeji
    Participant

    Thank 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.

    #27598
    wensolutions
    Keymaster

    Hello,

    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 !!

    #27634
    froshdimeji
    Participant

    Thanks for your time I think I will rest my case now, thank you, much appreciated

    #28246
    froshdimeji
    Participant

    Hello, 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

    #28300
    wensolutions
    Keymaster

    Hello,

    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 !!

    #28327
    froshdimeji
    Participant

    Ok 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

Viewing 15 posts - 16 through 30 (of 36 total)
  • You must be logged in to reply to this topic.