LDDConsulting
Forum Replies Created
-
Forum: Plugins
In reply to: [LDD Directory Lite] dropdown menu not working properlyIt seems a conflict with your theme. theme css is overriding dropdown background. this can be handle with some css JS changes
- This reply was modified 6 years, 5 months ago by LDDConsulting.
Forum: Plugins
In reply to: [LDD Directory Lite] Submissions by unregistered userswe are not allowing unregistered users to post listing, this could encourage spam listings
Forum: Plugins
In reply to: [LDD Directory Lite] Editing address layoutwe use filter to make changes to address. you can use following function in your theme function.php
function ldd_modifiy_address( $output ) {
$post_id = get_the_ID();if (!is_int($post_id))
return false;$city = get_post_meta($post_id, ldl_pfx(‘city’), true);
$state = get_post_meta($post_id, ldl_pfx(‘state’), true);$country = get_post_meta($post_id, ldl_pfx(‘country’), true);
$output = ”;
$output .= empty($city) ? ” : $city;
$output .= empty($state) ? ” : ‘, ‘ . $state;$output .= empty($country) ? ” : ‘, ‘ . $country;
return $output ? $output : false;}
add_filter( ‘lddlite_presentation_get_address’, ‘ldd_modifiy_address’,10,1 );Forum: Plugins
In reply to: [LDD Directory Lite] LDD Search Functionour plugin is supposed to search only through listing directory and not the whole site, your theme or custom functions may be overriding plugin search queries.
Please add this to your theme style.css
.bootstrap-wrapper { background: #fff;
overflow: hidden;}Forum: Plugins
In reply to: [LDD Directory Lite] Extra Paginated Pages for Listings are Giving 404 Errorscould you please share website URL?
Forum: Plugins
In reply to: [LDD Directory Lite] Add-On Not ActivatingAn updated to import addon is available now, the problem should be fixed the latest version.
- This reply was modified 6 years, 9 months ago by LDDConsulting.
Forum: Plugins
In reply to: [LDD Directory Lite] Markdown supportedYou can use WP Githuber MD plugin
Forum: Plugins
In reply to: [LDD Directory Lite] Script ErrorIt should work fine with updates
- This reply was modified 6 years, 11 months ago by LDDConsulting.
Forum: Plugins
In reply to: [LDD Directory Lite] Script ErrorPlease check if the issue has been fixed for you.
Forum: Plugins
In reply to: [LDD Directory Lite] Script Erroris this error conflicting with any other functionality in your site? is it breaking any javascript? i am asking this because i want to keep that in mind while making changes.
Forum: Plugins
In reply to: [LDD Directory Lite] Script Erroris blocking or breaking any functionality on your site? i was the issue and will try to fix it quickly
Forum: Plugins
In reply to: [LDD Directory Lite] Script Errorthis page is showing coming soon banner, could you please add the plugin page so that we can check the issue?
Forum: Plugins
In reply to: [LDD Directory Lite] Shortcode For Specific CategoryThank for pointing out the issue, we are working on this and will fix it soon
Forum: Plugins
In reply to: [LDD Directory Lite] TAGS – Front end, not just back end.Currently tags management is not available on front end, we will consider it for our next release which will soon be available.