Srikanth Ramidi
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.This reply has been marked as private.
Everything is fine. Facing below Issues:
1. Change Location, Listing and Add Listing in header menu. These are shown in GD Default Theme
2. Filter is not showing in home screen search form. It is showing when searched for something
3. Popular Places view is not changed. How to change it as horizontal list?
4. Compass Icon and Search Button overlaps in Home Screen Search form. PFA
5. In Mobile Version, Menu is not showing Content.PFAIf i install supreme theme, are their any changes to be made? I want view like you showed in this link.
http://wpgeo.directory/supreme-directory/This reply has been marked as private.I have created separate menu for logout. i have modified header.php and functions.php of theme.
I am facing two problems:
1. Spacing for Logout. I tried by adding css. But it is overridden by GD css.
2. In Mobile version only Logout(Secondary Menu) is visible. Other menus(Primary Menu) are not shown. In header.php if i paste below line above Secondary menu, Primary Menu is visible but logout(Secondary Menu) is not visible.wp_nav_menu( array(
‘container’ => false,
‘theme_location’ => ‘primary-menu’,
) );
?>Yes, That’s what i wrote in the post
Thank you very much. That plugin was refereed by your team only. Check below post link. Do you suggest any plugin for terms and conditions for register page.
https://wpgeodirectory.com/support/topic/terms-and-conditions-in-register-form/
1. Let us know file name where changes are to be made. I will make changes.
2. If i translate text. It will change in all places. Doesn’t that create problem.
This code will work only with wp-login.php without parameters. It will not work if redirect parameter is added. For your Info i am sending you code which will work for parameters also.if wp-login.php is called redirect to gd login page. Don’t redirect if logout option is their in url
function goto_login_page() {
$login_page = home_url( ‘/gd-login/’ );
global $pagenow;
if( ‘wp-login.php’ == $pagenow && $_GET[‘action’]!=”logout”) {
wp_redirect($login_page);
exit();
}
}
add_action(‘init’,’goto_login_page’);This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.By doing so it will not display warning. It results in blank page. I am asking about validation?
Fixed. It is hiding now.
-
AuthorPosts