pluginsware
Forum Replies Created
-
Hi,
I can not select Category on drop-down menu of atlest next pages: Listing Form, Add listing and Edit listing. Category is shown on drop-down menu but I can not select it.
I assuming that when I Add New Listing the custom fields appear as soon as I can select correct Category which I can not do right now.
– Please refer
https://pluginsware.com/documentation/cant-able-to-select-the-parent-categories/Also some shortcodes like [directorist_add_listing], [directorist_user_dashboard], [directorist_add_listing] print only [directorist_add_listing].
– Please refer
https://pluginsware.com/documentation/login-register-user-page-shortcodes-not-working/I have few custom fields. About Search function. How can I set it that search from Title -field. Now it can found from customs fields but not Title.
– Actually, the Keyword search field will search the title and description field. The custom fields will search only the custom field values.
Thanks
Hi,
We assume that the Login redirects to the WP admin login page.
I believe you must be using a Third Party registration plugin or a plugin on your website must be doing. So, this is a conflict.
Find and disable the other plugin which does this. Just disable your plugins one by one to see which causes this issue.
This is not a BUG / ISSUE by our plugin.
Thanks
Hi,
You can edit our template file for the listing form and make the changes. You will have to edit the file under /wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/user/acadp-public-edit-listing-display.php.
But, instead of editing the above file directly, I would recommend writing an override. Kindly follow https://pluginsware.com/documentation/customizing-acadp-templates/ to write an ACADP template override.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Location select styleHi,
I think you’re using our [acadp_search_form] shortcode. Am I correct?
Sublocations are displayed in separate select only in our “vertical” layout. But, you must be using the default “inline” layout. There is a shortcode attribute to display the search form vertically.
Kindly use [acadp_search_form style=vertical] shortcode on your page and check.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Google Map ZoomSorry, there is no option to enable “Ctrl + scroll” to zoom in/out in the google map
Thanks
Hi,
Please configure the pages correctly in our Page settings under our Plugin settings–> Advanced Tab.
If still, you have the issue, please submit a ticket on our site https://pluginsware.com/submit-a-ticket/ to check and update you.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Coordinates instead mapSorry, currently this option is not available.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Recommended Themes?Hi,
We developed our plugin with WordPress standards and it should work in all themes that developed with WordPress standards.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Multiple CategoriesHi,
The feature to add a listing to multiple categories is available in our pro version. Kindly refer https://pluginsware.com/#pricing
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] HoneypotHi,
Sorry for the inconvenience caused.
Are you sure that you are getting the Spam through our Registration form or our Listing form? Could you please send me more details about the spam emails that you received by submitting a ticket on our site https://pluginsware.com/submit-a-ticket/
In the meantime, we are going to release our next version with Honeypot and Akismet support. This version will be released by November.
Thanks
- This reply was modified 4 years, 6 months ago by pluginsware.
Forum: Reviews
In reply to: [Advanced Classifieds & Directory Pro] No honeypot, fills up with spamDear Customer,
Please refer https://developers.google.com/recaptcha/intro to get the site key and secret key.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Remove Categories from Search FormHi,
You can customize your [acadp_search_form] with few attributes.
Search attributes:
location=1|0
category=1|0
custom_fields=1|0
price=1|0Example: [acadp_search_form custom_fields=0 price=0 location=0 category=0]
Thanks
Forum: Reviews
In reply to: [Advanced Classifieds & Directory Pro] No honeypot, fills up with spamHi,
Thanks for your feedback.
Actually, we have integrated RECAPTCHA and you can enable it on your registration form and Add Listing form which will stop bots from creating user profiles.
Also, we are completely sanitizing all our form data before it is uploaded. So there is no way to upload malware through our plugin.
Kindly look at the “save_listing” function in the file /wp-content/plugins/advanced-classifieds-and-directory-pro/public/class-acadp-public-user.php to see how we sanitize our form data before we upload it.Also, we will take note of honeypot integration and will add it to our TO-DO list.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Help regarding directory requirementsHi
Can we do the above-mentioned with Advanced Classifieds & Directory Pro Plugin?
– It seems that you are looking to list the Schools using our plugin. If so, yes. it is possible with Advanced Classifieds and Directory Pro. You can download and install our free version and check it out.Do you let us add what I think is called Custom Post Types to accommodate the specific fields we need?
– Are you speaking about the custom fields? If yes, please refer https://pluginsware.com/documentation/custom-fields/Do you recommend a specific theme? Again, we want it to look exactly like the page at that URL I cited.
– Actually, we developed our plugin with WordPress standards and it should work in all themes that developed with WordPress standards.How does it integrate with the MySQL database?
Do you provide tools to manage the connection to that database?
– Actually, when you install WordPress, you need to connect with MYSQL. So it is not required to connect it again when we use our plugin.We want to be able to add new products on the fly as we add them. Can we do that with Google Sheets, Zapier, Integromat, or something?
– Here we assume that the products are nothing but your schools. If yes, sure you can add your schools from your admin and also from the site frontend. But it is not possible to do this by Google Sheets, Zapier, Integromat, or something.Do you recommend a specific hosting company for this? 5 to 10M records and 500k to 2M visits per month?
– Actually, we are not familiar with that. Please surf and find teh best hosting for WordPress based on your need.Thanks
Hi,
Please addd teh below code in your theme’s function.php and refresh your site to make all your listings to Never Expire.
function acadp_set_never_expire() { $args = array( 'post_type' => 'acadp_listings', 'post_status' => 'publish', 'posts_per_page' => -1, 'fields' => 'ids', 'meta_query' => array( array( 'key' => 'never_expires', 'compare' => 'NOT EXISTS', ) ) ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { foreach ( $loop->posts as $post_id ) { update_post_meta( $post_id, 'never_expires', 1 ); } } } add_action( 'init', 'acadp_set_never_expire' );Please remove the code after the job is done.
Thanks