pluginsware
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Ask about pro versionHi,
Yes, we are updating our plugin regularly. Actually, our next version will be released within this month.
But, our plugin already compatible with WordPress’s latest version. We will update this on the WordPress plugin site when we release our next version.
Thanks
Hi,
At the moment, the back-end access is restricted only to the site administrator for security reasons.
You can do 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] list sub categories with shortcode ?Hi,
Sorry, currently it is not possible to display only the subcategories of a particular category.
Thanks
Hi,
Please try the below solution.
1- File path: wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listings/
Open the below files,
1 – acadp-public-listings-grid-display.php
2 – acadp-public-listings-list-display.php
3 – acadp-public-listings-map-display.php
In the above three files, find the class acadp-listings-desc and add the below code before this class.
<?php $content = preg_replace('/\[\/?et_pb.*?\]/', '', $post->post_content ); ?>In the acadp-listings-desc class :
Find & Remove:
wp_trim_words( $post->post_content, $listings_settings['excerpt_length'], '...' );Replace the above code with the following one:
wp_trim_words( $content, $listings_settings['excerpt_length'], '...' );Finally, save it and check.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] How to change Category Style?Hi,
Go to the “Categories Page” section under our plugin’s settings page and change the “Display as” setting to “Thumbnail grid”. That’s it.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] SubcategoriesHi,
Go to the “Categories Page” section under our plugin’s settings page and change the “Display as” setting to “Text-only menu items” and check. Kindly refer http://prntscr.com/qcivew
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Shortcode helpHi,
Sorry, there is no shortcode to display listings based on custom field values.
But you can display listings based on category or location. Please refer https://pluginsware.com/documentation/shortcodes/
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Custom Fields in ListingHi,
Sorry, it is not possible to display the custom fields on the listing detail page. In the Listing detail page, the selected custom field values will be displayed.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Hiding Social Share option.Hi,
We checked your site and there is no social share option. Please explain your issue more in detail.
Thanks
Hi,
Sorry, there are no settings to change the column count on mobile devices. We have done this to adapt to all devices. 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
Hi,
Do you need to create a singular and plural name for the same category? If so, sorry, it is not possible.
Actually, we thought that you are looking to create two different categories with one singular name and another one with the plural name. For example, the first category name is Movie and the second category name is Movies.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Styling Search FormHi,
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] Featured listing paymentHi,
Please refer https://pluginsware.com/documentation/monetize-settings/ to enable the FEATURED LISTING option. You need to enable at least one payment gateway to make this work. Offline payment is available with our free version. But PayPal and Stripe will come with our Pro version.
https://pluginsware.com/documentation/payment-gateway-settings/
Thanks
Hi,
Yes, you can create a plural and singular category name.
Thanks