pluginsware
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Choose which fields are requiredHi,
You will have to edit the following file. And you just need to add the “required” attribute.
{root}/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/user/acadp-public-edit-listing-display.php
We advise you to write override instead of editing the above file directly. Kindly refer https://pluginsware.com/documentation/customizing-acadp-templates/
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] New listing formHi,
On the listing form when a description is entered it isn’t saved. It doesn’t show up in the ad at all. Need help to allow the description to be saved with the ad.
– Seems to be very strange. Did you edit our plugin code? Kindly submit a ticket in our site https://pluginsware.com/submit-a-ticket/ where our tech team will check and update you.
Is it possible to have the contact details not be visible in the listing?
– Sorry, currently we don’t have the option to hide contact details. If you have enabled it as a widget, you can remove “ACADP Listing Address” and hide it.
Thanks
- This reply was modified 7 years, 9 months ago by pluginsware.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] renewal_link issue not reproducibleHi,
Actually, It’s working fine in our end. Could you please ask your customer for the email. So that we can check what goes wrong.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Is it possible to use tags?Hi,
Is it possible to add tags to the listings? Since I can only use one category per submission, tags will be handy.
– Sorry, we don’t have tags feature.
I’ve seen that the option to select “multiple categories” was on your roadmap a year ago. Have you dropped the idea?
– No, We will release the Multicategories addon within next 15 days.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Listing Display FormatHi,
You can edit our listing page and make the changes. You will have to edit /wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listing/acadp-public-listing-display.php file.
But, instead of editing the above file directly, I would recommend writing an override which will not affect plugin update. 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] Register – new users not allowedHi,
When I clicked on the ‘Register’ button on my very draft site, I get an error message which states “Registering new users is currently not allowed.”
– You must enable “Anyone can register” option under “WordPress Admin Panel => Settings => General”.
In addition to this problem, when I try to post an ad, I can see the four categories that I set up, but I can’t select them.
– You must have enabled “Prevent listings from being posted to top level categories?” option in the plugin’s Settings page. Kindly disable it and check now.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Shortcodes are not workingHi Dalmas,
Kindly explain your issue more in detail. Let me know which shortcode is not working. Also, please submit a ticket on our site (https://pluginsware.com/submit-a-ticket/) with your site link where you face the issue. So that we could check and update you.
Thanks
Hi,
Please check whether any of the acadp pages (listing Location, listing category, checkout, etc) in the draft. If it is, kindly publish it and check.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Export to ExcelHi,
Our Listing pages are just a WordPress Custom Post Type “acadp_listings” and the categories are Custom Taxonomies “acadp_categories”, “acadp_locations”. So, the plugin is developed over these standard WordPress methods and there is a lot of plugin in the WordPress.Org repository to export or import WordPress Custom Post Types and Custom Taxonomies. So, you can just browse for them on the WordPress.Org website. But, we have not tried any of these plugins so far, so we cannot give any suggestion in this.
The only problem will be with our Custom Field. Custom Fields option in our plugin also a Custom Post Type “acadp_fields” and mapped to the listings “acadp_listings”. Using a third party add-on will not do this mapping.
Thanks
- This reply was modified 7 years, 10 months ago by pluginsware.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Load map with lat and longHi Kreppar,
Sorry, currently it is not possible to load the maps with latitude and longitude.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Rating SystemHi,
Sorry, currently we don’t have Rate a Listing feature and there is no compatible plugin for it.
Thanks
Hi,
Please submit a ticket to our site https://pluginsware.com/submit-a-ticket/. So that we can send you the update package.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] User Role EditorHi Nicolas,
At the moment, the back-end access is restricted only to the site administrator for security reasons. I have users frequently asking this and in future, we will add the feature to allow admin access for users based on the ROLES/CAPABILITY.
As an immediate solution, you can get this by adjusting our code,
1. Open /wp-content/plugins/advanced-classifieds-and-directory-pro/admin/class-acadp-admin-listings.php
2. Search for the line,
'show_ui' => current_user_can( 'administrator' ) ? true : false,3. Replace it as,
'show_ui' => current_user_can( 'administrator' ) || current_user_can( 'editor' ) ? true : false,4. Save the changes and try now.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Schema structured data issueHi Purnendu,
Sorry, Currently our plugin is not compatible with Yoast Plugin. But I will pass this to our team where they will analyze and add this in future.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Replace “favourites”Hi,
Below are the files where you need to search and replace them,
1. Open the following files,
/wp-content/plugins/advanced-classifieds-and-directory-pro/admin/class-acadp-admin-settings.php
/wp-content/plugins/advanced-classifieds-and-directory-pro/includes/functions-acadp-permalinks.php
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listings/acadp-public-listings-grid-display.php
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listings/acadp-public-listings-list-display.php
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listings/acadp-public-listings-map-display.php2. Search for
Add from favourites
Remove from favourites
and replace them as you need.
Important Note: Don’t change other variable names except these strings.
Save the changes and try now.
Thanks