pluginsware
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] change searchbox placeholder textHi,
If you want to change the content on the search, then you will need to override our Search layout. Kindly refer https://pluginsware.com/documentation/customizing-acadp-templates/
You need to override the below files,
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/search/acadp-public-search-form-inline-display.php
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Edit listing in Database@tongpang Do you need to edit the listing phone number and description? If yes, the listing owner can edit it by editing the listing in the frontend. Also admin can edit this from your WordPress admin panel.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] search form layoutHi,
Sorry, there are no settings to change any styles. Our plugin uses Bootstrap for the design. The only solution at the moment is to write CSS overrides for our HTML elements. You must add your custom CSS overrides under the “Advanced CSS” option of your theme’s customizer panel.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Pay Only Listings?Hi,
Sorry, there is no option to remove the “Not Now” button.
You can customize our Checkout page template and hide/remove it, You need to edit,
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/payments/acadp-public-checkout-display.phpWe advise you to write override instead of editing the above files directly. Kindly refer https://pluginsware.com/documentation/customizing-acadp-templates
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] permalink problemSeems to be strange. Kindly submit a ticket on our site https://pluginsware.com/submit-a-ticket/ where our tech team will check and update you.
Thanks
Hi,
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 category=0]
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] catégoryHi,
You can add your category and subcategory in your admin panel under Classifieds & Directory –> Categories.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] I need help with making layoutHi,
Thanks for contacting Advanced Classifieds & Directory Pro Support.
Our Single listing pages are Custom Post Type “acadp_listings” and they cannot be found under “WordPress => Pages”. Normally the layout for posts is controlled by single.php of your theme. Since ACADP listings are Custom Post Type “acadp_listings”, they will use the same post template(single.php). So, you can Override the single post template(single.php) from your theme, like “single-acadp_listings.php” and do your changes inside this file. Kindly refer https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
Also, please check with your theme support team to add/remove the sidebar.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Sort By not workingHi,
Seems to be strange. Please submit a ticket on our site https://pluginsware.com/submit-a-ticket/ where our tech team will check and update you.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Update has removed marker cluster pngsHi,
In our latest version, we moved these images to
/wp-content/plugins/advanced-classifieds-and-directory-pro/vendor/markerclusterer/images/
Also, we changed the image paths in our files too. Please clear your cache and check it again. If still, you have the issue, please submit a ticket on our site https://pluginsware.com/submit-a-ticket/ with your site link to check the issue.Thanks
Dear Customer,
Kindly try adding the following code to the bottom of your theme’s functions.php file,
function acadp_allow_private_listings_publicly( $args, $shortcode ) { if ( ! isset( $args['post_status'] ) || 'publish' == $args['post_status'] ) { $args['post_status'] = array( 'publish', 'private' ); } return $args; } add_filter( 'acadp_query_args', 'acadp_allow_private_listings_publicly', 10, 2 );Hope this solves your issue!
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Change text colourHi,
Kindly add the following CSS code in your theme’s style.css file or in the “Advanced CSS” option of your theme’s customizer panel.
.acadp a {
color: red !important;
}Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Customizing Location listing with DIVIHi,
Seems to be strange, kindly submit a ticket on our site https://pluginsware.com/submit-a-ticket/. So that our tech team will check and update you.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Disabling priceHi,
Just uncheck “Enable Price” option under the plugin’s Settings page to disable the price field.
To remove Payment History Menu,
1. Go to “WordPress Admin Panel => Classifieds & Directory => Settings => Advanced Tab => Pages”
2. Find the “Payment History” setting and assign no page(“Select a page”) to this option.
3. Save the changes and try now.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Compatible up to 5.5.4Hi,
We are going to release our next version on the 10th of this month.
Thanks