Title: LDD Consulting, Inc.'s Replies | WordPress.org

---

# LDD Consulting, Inc.

  [  ](https://wordpress.org/support/users/lddweb/)

 *   [Profile](https://wordpress.org/support/users/lddweb/)
 *   [Topics Started](https://wordpress.org/support/users/lddweb/topics/)
 *   [Replies Created](https://wordpress.org/support/users/lddweb/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/lddweb/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/lddweb/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/lddweb/engagements/)
 *   [Favorites](https://wordpress.org/support/users/lddweb/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/lddweb/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/lddweb/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Registration not working for new users or current users](https://wordpress.org/support/topic/registration-not-working-for-new-users-or-current-users/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/registration-not-working-for-new-users-or-current-users/#post-11833154)
 * Do you have any other mebrship plugins activated on this site?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Page Alignment](https://wordpress.org/support/topic/page-alignment-7/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/page-alignment-7/#post-11833149)
 * Try something like this in your custom CSS:
 *     ```
       .list-group-item  {
       	width: 47% !important;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] How to disable plug in Header/Menu bar](https://wordpress.org/support/topic/how-to-disable-plug-in-header-menu-bar/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/how-to-disable-plug-in-header-menu-bar/#post-11833120)
 * The directory navigation and search function allow your website visitors to easily
   brows the listings independent of your main website’s navigation.
 * If you wish to remove this navigation, the quickest way to do so would be to 
   target the navigation bar with a bit of CSS:
 *     ```
       .ldd-directory-navbar {
       	display: none !important;
       }
       ```
   
 * But, again we do not recommend doing so for the sake of your visitors user experience.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Compact view website link doesn’t open in new window](https://wordpress.org/support/topic/compact-view-website-link-doesnt-open-in-new-window/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/compact-view-website-link-doesnt-open-in-new-window/#post-11833106)
 * This is a bug that should be fixed in the next update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Hide index of Pages listed below individual listings, after Google map](https://wordpress.org/support/topic/hide-index-of-pages-listed-below-individual-listings-after-google-map/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/hide-index-of-pages-listed-below-individual-listings-after-google-map/#post-7198924)
 * This looks like a conflict with your current theme. You can try a different theme
   or if you feel comfortable editing some code try removing the following from “
   single.php” in “plugins\ldd-directory-lite\templates\”
    ** On line #96 remove:`
   <?php get_sidebar(); ?>`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Change Language](https://wordpress.org/support/topic/change-language-116/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/change-language-116/#post-7143281)
 * The plugin has two translation files available by default “en , it”.
    You can
   add more languages by simply copying the default file “ldd-directory-lite-en_US.
   mo” and translate it as per their requirements inside “ldd-directory-lite/languages/”.
 * File Format: ldd-directory-lite-{language ISO}.mo
    File Format: ldd-directory-
   lite-{language ISO}.po
 * WordPress Language Editor: [https://poedit.net/wordpress](https://poedit.net/wordpress)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Search Bar Adjustment & Category button option removal](https://wordpress.org/support/topic/search-bar-adjustment-category-button-option-removal/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/search-bar-adjustment-category-button-option-removal/#post-7065676)
 * **Fix for button overlapping:**
    This button’s overlapping issue is due to the
   theme css. We can fix this by adding custom css:
 *     ```
       #directory-search {
           height: auto !important;
           width: 95% !important;
       }
       ```
   
 * **Removing Category Link: **
    Search and remove this li code inside \ldd-directory-
   lite\templates\header.php:
 * `<li class="dropdown ldd-categories-dropdown"> ... </li>`
 * **Centering the header menu:**
 *     ```
       @media (min-width:800px) {
       ul.nav.navbar-nav {
           float: none !important;
           margin: 0 auto;
           width: 70%;
       }
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] On all Directory list page two](https://wordpress.org/support/topic/on-all-directory-list-page-two/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/on-all-directory-list-page-two/#post-7047625)
 * Try updating your permalinks settigns >> permalinks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] On all Directory list page two](https://wordpress.org/support/topic/on-all-directory-list-page-two-1/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/on-all-directory-list-page-two-1/#post-7047590)
 * Can you provide the URL for the site you’re using our plugin on? Pagination should
   be working. There may be a plugin or theme conflict.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Instead of showing the categories…I'd like to see the business first](https://wordpress.org/support/topic/instead-of-showing-the-categoriesid-like-to-see-the-business-first/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/instead-of-showing-the-categoriesid-like-to-see-the-business-first/#post-7048081)
 * Unfortunately our plugin currently only provides one default listing view (by
   category). We are developing alternate views for future releases that will allow
   you to choose what criteria to display your listings.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Page location issue](https://wordpress.org/support/topic/page-location-issue/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/page-location-issue/#post-7054177)
 * Thanks for pointing this out. We’ll need to add this to our list of fixes for
   the next update. If we get it resolved soon we’ll let you know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Featured post in multiple categories problem](https://wordpress.org/support/topic/featured-post-in-multiple-categories-problem/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/featured-post-in-multiple-categories-problem/#post-6770094)
 * This issue should now be resolved in the latest update to the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Logo pic does'nt upload](https://wordpress.org/support/topic/logo-pic-doesnt-upload/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/logo-pic-doesnt-upload/#post-6568433)
 * We’ve just made some bug fixes and updated the functionality of the plugin. Try
   upgrading to the latest version to see if this resolves your issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LDD Directory Lite] Cant activate plugin](https://wordpress.org/support/topic/cant-activate-plugin-51/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/cant-activate-plugin-51/#post-6681843)
 * We’ve just made some bug fixes and updates to the plugin. Try upgrading to the
   latest version to see if your issue is resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Sidebar Menu] Custom links in menu builder](https://wordpress.org/support/topic/custom-links-in-menu-builder/)
 *  [LDD Consulting, Inc.](https://wordpress.org/support/users/lddweb/)
 * (@lddweb)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/custom-links-in-menu-builder/#post-3843278)
 * Any chance of this being implemented in future updates?

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/lddweb/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/lddweb/replies/page/2/?output_format=md)