pluginsware
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Can I hide keyword search?Hi,
It seems that you are looking to hide the “Keyword” search field which is not possible by default. But, you can hide that too by using some CSS tricks. Kindly add the following CSS code in your theme’s style.css file for this.
.acadp-search .form-group:first-child { display: none !important; }Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Can I make Location sticky in search?Hi Todd,
Sorry, currently we don’t have the feature to make the location sticky in the search.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] SEO QuestionHi,
Do you speak about Single Listing Page? The title will change based on the listing title. Kindly refer http://prntscr.com/of4jaj
Also please send your site URL where you face this issue by submitting a ticket on our site https://pluginsware.com/submit-a-ticket/
Thanks
- This reply was modified 6 years, 10 months ago by pluginsware.
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Using Shortcoder in listingsHi,
Actually, in our last version, we restricted HTML outputs. This is for security reason.
If you need to allow script, please open the below file,
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listing/
Search the below code in the above file:
<?php echo wp_kses_post( $description ); ?>Replace the above code with the following code:
<?php echo $description; ?>Finally, save the file and check.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Display default listHi,
Sorry, there is no option to display one list as a default list when there is no result from the search.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] lightbox imagesHi,
Sorry, there is no option to add lightbox to the images.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Larger images?Hi,
-“Advanced Classifieds and Directory Pro” uses the built-in upload system from WordPress. So, you can control the image dimensions under “Settings => Media”. Kindly refer https://codex.wordpress.org/Settings_Media_Screen
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] hide the custon field in the frontHi,
Sorry, currently all custom field values will be displayed on the site. There is no option to hide this.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] permissions problemsHi,
Sorry, currently in our plugin there is no option for the user who is registering choose if he is an owner, agency or agent. But you can use third-party registration plugins which have this feature.
Our plugin gives the option to use a third party registration system.
1. Install a Third Party Registration plugin.
2. Go to our plugin’s settings page, scroll down to the “User Login / Registration” section
3. Select the second option in the “Enable Login / Registration” setting
4. Fill in the “Custom Login URL” field with the login form shortcode provided by the other login plugin you use.
5. Fill in the “Custom Registration URL” field with the registration page URL provided by the other plugin.
6. Save the changes and try now.Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Thumbnail DimensionsHi,
“Advanced Classifieds and Directory Pro” uses the built-in upload system from WordPress. So, you can control the image dimensions under “Settings => Media”. Kindly refer https://codex.wordpress.org/Settings_Media_Screen
Thanks
Hi,
Kindly submit a ticket on our site https://pluginsware.com/submit-a-ticket/ and will send you the solution. Sorry for the inconvenience.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Imagen por defecto – sin imagenHi,
Sorry, currently we don’t have the option to change the default image. But we will take note of this and add it in the future.
Thanks
Hi,
Sorry, currently we don’t have the option to add a link to redirect to the Buddypress Author profile.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] “Sort By” Dropdown Menu List StyleHi,
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 and check.
.acadp li:before{
display: none !important;
}Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Empty Space in Single Listing PageHi,
Our Individual listing pages are Custom Post Type “acadp_listings” and they cannot be found under “WordPress => Pages”. Kindly check “STEP 8: CONFIGURE SINGLE LISTING PAGE” section under https://pluginsware.com/documentation/getting-started/ to see how the listing detail page is designed. 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 for sidebar assignment.
Thanks