• Resolved quzaib

    (@quzaib)


    hi, am tired to fix these problems of my web http://www.holypakistan.com
    > to add search bar in top bar
    > to fix slider problem, and when i resize my page it looks fine, u can see , if i can’t not fix then plz recommend me any slider plugin who can work same
    > and i am using author markup plugin, but it showing me two author box, i thing one is from plugin and another is from wordpress, how can i disable wordpress author box,
    thanku

    • This topic was modified 7 years, 4 months ago by quzaib.
Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello There,

    1) Check out this thread to add search bar
    https://wordpress.org/support/topic/add-search-button-to-header-menu/

    2) You can use plugins like Responsive WordPress Slider – Soliloquy Lite
    https://wordpress.org/plugins/soliloquy-lite/

    3) Use following code to hide WordPress author box:

    div#author-bio {
        display: none !important;
    }

    Thanks.

    Thread Starter quzaib

    (@quzaib)

    thanku, but how can i add soliloquy slider looks like just mesoculomn demo theme slider, there is no potion to add it in home
    and above thread was no helpful to add search bar in top menu

    Theme Author Richie KS

    (@rkcorp)

    you could disable the built in slider, and add something like this in functions.php

    function meso_add_sol_slider() {
    echo '[THE SOL SLIDER SHORTCODE]';
    }
    add_action('bp_before_blog_entry','meso_add_sol_slider');
    Theme Author Richie KS

    (@rkcorp)

    above thread was no helpful to add search bar in top menu

    Did you read the faq.txt? there’s instruction on adding searchform in top nav. add this to functions.php

    function meso_add_custom_searchform() { 
    return get_search_form();
    }
    add_action('bp_inside_top_nav','meso_add_custom_searchform',20);
    Thread Starter quzaib

    (@quzaib)

    where should i add these code in functions.php file?

    Thread Starter quzaib

    (@quzaib)

    sorry to ask sily quesitons,
    i add both code like this in last before closing php tag, but not working
    `

    function meso_add_custom_searchform() {
    return get_search_form();
    }
    add_action(‘bp_inside_top_nav’,’meso_add_custom_searchform’,20);

    function meso_add_sol_slider() {
    echo ‘[THE SOL SLIDER SHORTCODE]’;
    }
    add_action(‘bp_before_blog_entry’,’meso_add_sol_slider’);

    ?>

    Theme Author Richie KS

    (@rkcorp)

    its working fine to me, see demo
    //demo.dezzain.com/

    when i said add the slider with shortcode echo ‘[THE SOL SLIDER SHORTCODE]’;
    you need to add the actual shortcode from plugin, not just copy paste my sample code ;(

    Theme Author Richie KS

    (@rkcorp)

    how can i disable wordpress author box

    customizer->general->posts->author info->disable it

    Thread Starter quzaib

    (@quzaib)

    thanku so much for ur support,

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘slider not working well’ is closed to new replies.