Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: How to edit Comment section design #74507
    Makoto T
    Participant

    Hi,

    Thank you for your prompt reply.

    I am disappointed to hear that… I hope for this future development.

    Kind regards,
    – Mac

    in reply to: Dropdown menu width #61268
    Makoto T
    Participant

    Hi,

    Now I could tweak the width of dropdown menu as your advice.

    Thank you for your wonderful support as always.

    Cheers,
    – Makoto

    Makoto T
    Participant

    Hi,

    Thank you for your kind reply.

    Hope your lovely theme will be updated much more useful in the near future if possible 😉

    All the best,
    – Makoto

    Makoto T
    Participant

    Hi,

    This works on our site! Thank you for your kind advice!!

    I would like to ask you a little bit more regarding this Notice feature.

    1. If switch to display the post/blog later, do we need to delete this code on your last advice from the child theme functions.php file?

    Because I chose Post/Blog category on the ‘Notice Category’ drop down menu, but nothing happen. Events still display on the Notice feature.

    2. How to change rolling up ‘Delay’& ‘Duration’ of the Notice feature

    I would like to tweak rolling up a little slower than default speed, etc.

    Thank you.

    Kind regards,
    – Makoto

    in reply to: How to edit font sizes and line space on footer widget area #59262
    Makoto T
    Participant

    Hi,

    Thank you for your prompt reply. This works for our site 😉

    Again I really appreciate your kind support always.

    Best wishes,
    – Makoto

    in reply to: How to edit font sizes and line space on footer widget area #59244
    Makoto T
    Participant

    Hi,

    I have tried to send my reply message with our site’s URL since last night, but I cannot do that. I do not know why I cannot do it. I guess this forum board has some rules, such as declining some words,URL,etc.

    Then I decide to send this image which has URL and password to log into our test site.
    Our URL

    Hope this will go through…

    I will move it from current test server to LIVE one after completion of this development.

    Again, thank you for your great support.

    I am looking forward to hearing from you soon.

    Regards,
    – Makoto

    in reply to: How to edit font sizes and line space on footer widget area #59242
    Makoto T
    Participant

    Hi,

    I have tried to send my reply message with our site’s URL since last night, but I cannot do that. I do not know why I cannot do it. I guess this forum board has some rules, such as declining some specific words, etc.

    Can you please advise me how to let you know our site URL, such as sending mail directly instead of using this forum board, etc?

    I am looking forward to hearing from you very soon.

    Regards,
    – Makoto

    in reply to: How to edit font sizes and line space on footer widget area #59189
    Makoto T
    Participant

    Hi,

    These almost helps us. Thank you for your kind advice.

    I need your one more help. It is how to customize the Event title size which are generated system with link to each event page.

    I did put event list on the footer widget area. There is a list which has each event tite’ with the link and event date. As this your advice, I could edit ‘Event Date’ size, but could not customize ‘Event Title’ size.

    It is much appreciated if you could advise me regarding this problem.

    Again, thank you for your quick and kind support.

    Regards,
    – Makoto

    in reply to: Change Hover Color on Post/Blog page #58829
    Makoto T
    Participant

    Hi,

    Thank you for your kind &quick reply. Now I could edited it!

    Regards,
    – Makoto

    in reply to: How to customize Search button TEXTS #58087
    Makoto T
    Participant

    Hi,

    Now I could solve this issue by my self. In stead of last advice, I did need to paste this below code on functions.php file in the child theme and change the Search text. Thank you for your help anyway.
    >>>>>>>>>>>>>>>>>

    function education_hub_customize_search_form() {

    $search_placeholder = education_hub_get_option( ‘search_placeholder’ );
    $form = ‘<form role=”search” method=”get” class=”search-form” action=”‘ . esc_url( home_url( ‘/’ ) ) . ‘”>
    <label>
    <span class=”screen-reader-text”>’ . _x( ‘Search for:’, ‘label’, ‘education-hub’ ) . ‘</span>
    <input type=”search” class=”search-field” placeholder=”‘ . esc_attr( $search_placeholder ) . ‘” value=”‘ . get_search_query() . ‘” name=”s” title=”‘ . esc_attr_x( ‘Search for:’, ‘label’, ‘education-hub’ ) . ‘” />
    </label>
    <input type=”submit” class=”search-submit” value=”‘ . esc_attr_x( ‘Search’, ‘submit button’, ‘education-hub’ ) . ‘” />
    </form>’;

    return $form;

    }

    >>>>>>>>>>>>>>>>>
    Cheers,
    – Makoto

    in reply to: How to customize Search button TEXTS #58022
    Makoto T
    Participant

    Hi,

    Thank you for your advice.

    I have to say that this does not work at this time. As your advice, I did paste this code on the file of Child Theme as below:

    —–

    <?php
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );

    }

    function education_hub_check_slider_status( $input ){

    global $post, $wp_query;

    // Slider status
    $featured_slider_status = education_hub_get_option( ‘featured_slider_status’ );

    // Get Page ID outside Loop
    $page_id = $wp_query->get_queried_object_id();

    // Front page displays in Reading Settings
    $page_on_front = get_option( ‘page_on_front’ ) ;
    $page_for_posts = get_option( ‘page_for_posts’ );

    if ( ‘entire-site’ == $featured_slider_status || ( ( is_front_page()) && ‘home-page’ === $featured_slider_status ) ){

    $input = true;
    }
    else{
    $input = false;
    }
    return $input;

    }

    /**
    * Customize search form.
    *
    * @since 1.0.0
    *
    * @return string The search form HTML output.
    */
    function education_hub_customize_search_form() {

    $search_placeholder = education_hub_get_option( 'search_placeholder' );
    $form = '<form role="search" method="get" class="search-form" action="' . esc_url( home_url( '/' ) ) . '">
    <label>
    <span class="screen-reader-text">' . _x( 'Search for:', 'label', 'education-hub' ) . '</span>
    <input type="search" class="search-field" placeholder="' . esc_attr( $search_placeholder ) . '" value="' . get_search_query() . '" name="s" title="' . esc_attr_x( 'Search for:', 'label', 'education-hub' ) . '" />
    </label>
    <input type="submit" class="search-submit" value="' . esc_attr_x( 'Search', 'submit button', 'education-hub' ) . '" />
    </form>';

    return $form;

    }

    ?>

    —–

    Is there anything I need to amend on this functions.php in the child theme?

    I am looking forward to hearing fro you soon.

    Best wishes,
    – Makoto

    in reply to: How to add Sidebar on the Blog page only #57677
    Makoto T
    Participant

    Hi,

    This your 2nd advice does work! Thank you for your quick & great help!!

    Cheers,
    – Makoto

    in reply to: How to add Sidebar on the Blog page only #57671
    Makoto T
    Participant

    Hi,

    Thank you for your quick $ kind reply.

    I am afraid that I already tried to do set our Blog page as your advice before, but it does not work. I did set it as below image, and other combinations too…

    Setting of Blog Page on Education Hub Pro

    FYI, I would copy current codes of this our Blog page on the admin panel of WordPress as below:
    ———————–
    <div id=”pl-320″ class=”panel-layout”>
    <div id=”pg-320-0″ class=”panel-grid panel-has-style” data-style=”{"padding":"0rem 1rem 0rem 1rem","mobile_padding":"0rem 1rem 0rem 1rem","background_display":"tile","cell_alignment":"flex-start"}” data-ratio=”0.61803398″ data-ratio-direction=”right”>
    <div class=”panel-row-style panel-row-style-for-320-0″>
    <div id=”pgc-320-0-0″ class=”panel-grid-cell” data-weight=”1″>
    <div id=”panel-320-0-0-0″ class=”so-panel widget widget_sow-editor panel-first-child panel-last-child” data-index=”0″ data-style=”{"background_display":"tile"}”>
    <div class=”so-widget-sow-editor so-widget-sow-editor-base”>
    <div class=”siteorigin-widget-tinymce textwidget”>

    Blog is here.

    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    </div>
    ———————–

    It is much appreciated if you could give me your advice to solve this problem.

    Thanks,
    – Makoto

Viewing 13 posts - 1 through 13 (of 13 total)