Giri
Forum Replies Created
Viewing 15 posts - 301 through 315 (of 2,661 total)
-
AuthorPosts
-
Hi there,
Where can i see that error?
Hi there,
can you try this code for #3 ?
remove_filter('term_link', 'geodir_get_term_link', 10 );
function init_sd_add_custom_serach_results_text() { add_action('geodir_search_content', 'sd_add_custom_serach_results_text', 4); } add_action('wp', 'init_sd_add_custom_serach_results_text'); function sd_add_custom_serach_results_text() { echo __('Your Search Results for ', 'supreme-directory').get_search_query(false); }
If you need number of results and distance range you need to hire a dev.
Thanks
To remove serach box in serach page
function sd_before_listing_content_search_remove() { if (sd_is_non_location_cpt()) { return; } remove_action('geodir_search_content', 'sd_search_form_on_search_page', 4); } add_action('wp', 'sd_before_listing_content_search_remove');
You can do something like this to make search page full width
.sd.search.geodir-page #geodir_content { flex-basis: 100% !important; width: 100% !important; } .sd.search.geodir-page .geodir-listings-sidebar-right { display: none !important; }
Hey sorry. I’m looking into it. Give me some time.
July 12, 2017 at 11:14 am in reply to: move logo to middle of the featured image – Supreme theme #386704You are welcome. I’m glad it works.
July 11, 2017 at 4:18 pm in reply to: move logo to middle of the featured image – Supreme theme #386582Add this css
.sd-homepage #site-header .site-logo-wrap { display: none; }
July 11, 2017 at 1:51 pm in reply to: move logo to middle of the featured image – Supreme theme #386556Try this code
function gd_custom_home_logo() { ?> <div class="gd-custom-logo"> <div class='site-logo'> <a href='<?php echo esc_url( home_url( '/' ) ); ?>' title='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>' rel='home'><img src='<?php echo esc_url( get_theme_mod( 'logo', false ) ); ?>' alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></a> </div> </div> <?php } add_action( 'sd_homepage_content', 'gd_custom_home_logo', 9 );
You are welcome.
July 11, 2017 at 12:32 pm in reply to: move logo to middle of the featured image – Supreme theme #386547Are you talking about only the home page?
global $post; echo geodir_get_review_count_total($post->ID);
You are welcome.
You are welcome.
-
AuthorPosts
Viewing 15 posts - 301 through 315 (of 2,661 total)