LDDConsulting
Forum Replies Created
-
Forum: Plugins
In reply to: [LDD Directory Lite] custom files not working after updateWe will look into this quickly. and will update you about our recent updates.
Forum: Plugins
In reply to: [LDD Directory Lite] sidebar under listings@stanholtsclaw, you should create the lddlite_templates directory in the following folder on your site: /wp-content/themes/yourtheme, where “yourtheme” is the direcotry for your website’s theme or child theme.
Once you’ve copied the template file from our plugin to this directory any changes you make to it should override the plugin’s template file.
- This reply was modified 9 years, 1 month ago by LDDConsulting.
Forum: Plugins
In reply to: [LDD Directory Lite] Directory and Filing form disappearHello,
I have installed 0.8.60 version at local machine and import demo listing data. I have upgraded the plugin to 0.8.70 version and everything looks good.
Could you please provide more information about this specific issue? like old plugin version and missing field screenshot and etc.
Thanks.
Thanks for using our plugin. If you’re comfortable with phpMyadmin you might be able to accomplish this that way. We do also have a paid addon available for download that may help you: http://plugins.lddwebdesign.com/extensions/directory-import/
Forum: Plugins
In reply to: [LDD Directory Lite] City is missingUntill we push out the next update that resolves this issue you can edit the file located here: \ldd-directory-lite\includes\template-functions.php
On line 408 edit the ldl_get_address() function so that it is:
function ldl_get_address() { $post_id = get_the_ID(); if (!is_int($post_id)) return false; $address_one = get_post_meta($post_id, ldl_pfx('address_one'), true); $address_two = get_post_meta($post_id, ldl_pfx('address_two'), true); $postal_code = get_post_meta($post_id, ldl_pfx('postal_code'), true); $country = get_post_meta($post_id, ldl_pfx('country'), true); $city = get_post_meta($post_id, ldl_pfx('city'), true); $state = get_post_meta($post_id, ldl_pfx('state'), true); $output = ''; $output .= empty($address_one) ? '' : $address_one; $output .= empty($address_two) ? '' : ', ' . $address_two; $output .= empty($postal_code) ? '' : ', ' . $postal_code; $output .= empty($city) ? '' : ', ' . $city; $output .= empty($state) ? '' : ', ' . $state; $output .= empty($country) ? '' : ', ' . $country; $output = apply_filters('lddlite_presentation_get_address', $output, $post_id, compact('address_one', 'address_two', 'postal_code', 'country')); return $output ? $output : false; }Forum: Plugins
In reply to: [LDD Directory Lite] No results pageBy default when no search result is found, the plugin redirects to theme’s default search page.
You can try changing the following code inside “ldd-directory-lite/includes/listings.php” on Line # 25
Replace:
if (LDDLITE_POST_TYPE == get_post_type()) {With:
if (LDDLITE_POST_TYPE == get_post_type() or (isset($_GET["post_type"]) and $_GET["post_type"] == LDDLITE_POST_TYPE)) {After that the plugin will use “ldd-directory/templates/search.php” else condition.
Forum: Plugins
In reply to: [LDD Directory Lite] Add categories to ListSorry about the confusion!
Please use the below code. It will display category(s) associated with that particular post.
<?php echo get_the_term_list(get_the_id(),LDDLITE_TAX_CAT,””,”, “); ?>
Forum: Plugins
In reply to: [LDD Directory Lite] Add categories to ListI’ll check with the programmer and get back to you ASAP.
Forum: Plugins
In reply to: [LDD Directory Lite] Add categories to ListTry adding the following to the template file:
<ul> <?php echo ldl_get_categories_li(0); ?> </ul>Forum: Plugins
In reply to: [LDD Directory Lite] Category don't show right sidebarWe’ve noticed that with some themes there have been sidebar issues. A couple of fixes you might try are:
- Try turnign off the Bootsrap css in the Directory plugin. ( Directory >> Settings >> Appearance >> Disable Bootstrap )
- Try changing the width, padding or margins of your theme’s sidebar (usually only few pixles)
- Try changing the width, padding, or margins of your theme’s main content area
Forum: Plugins
In reply to: [LDD Directory Lite] No results pageCan you provide an URL where we can see this in action?
Forum: Plugins
In reply to: [LDD Directory Lite] Add categories to ListI’m not sure what exactly you are asking. What are you trying to accomplish?
There is currently only one default view for the directory listings which will always display the categories. Are you trying to list the categories again at the bottom of the individual listings page?
Also -have you checked the FAQs? There are a few shortcodes that you may find helpful.
Forum: Plugins
In reply to: [LDD Directory Lite] On all Directory list page twoWe looked into what’s going on here. It seems to be a permalinks issue. Try resetting the permalinks on your site ( settings -> permalinks ).
Also there seems to be a conflict with your theme’s older Bootstrap css which is causing formatting issues in the directory header/navigation.
Forum: Plugins
In reply to: [LDD Business Directory] Image IssueThis is actually something we’re looking into fixing for the next update. Thank you for reminding us of this!