pluginsware
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Display user bio on user pageHi,
1. Kindly add the following code to the bottom of your theme’s functions.php file,
function display_user_bio( $atts ) {
$user_slug = acadp_get_user_slug();
if ( $user_slug ) {
$user = get_user_by( ‘login’, $user_slug );
if ( $user ) {
echo get_the_author_meta( ‘description’, $user->ID );
}
}
}
add_shortcode( ‘user_bio’, ‘display_user_bio’ );2. Then, edit and open the “User Listings” page from your “WordPress Admin Dashboard => Pages” menu and add the shortcode [user_bio] above the existing shortcode on the page.
3. Save the changes and check now.Hope this helped you!
Thanks
Hi,
As of now, the listings will be displayed one by one in mobile devices. But, we will take note of your suggestion and look into it in the future.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Social Media icons for every memberHi,
Sorry, currently the URL custom field field will display URLs. But, we will take note of this look into it in the future.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] image upload in custom fieldsHi,
Sorry, we don’t have image upload custom field
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Shortcode to exclude a categorySorry, we don’t have the shortcode to exclude category
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Change single listings page headerHi,
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.
But, if you just want to alter the listing content displayed, then you will need to override our listing detail page template. Kindly refer https://pluginsware.com/documentation/customizing-acadp-templates/
You will have to override the /wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listing/acadp-public-listing-display.php fileThanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Error on fronendHi,
Seems to be strange. Could you please submit a ticket on our site with your site link where you face the issue? So that our tech team will check and update you.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Login/Logout OptionDear Customer,
Kindly try using the following code,add_filter( 'wp_nav_menu_items', 'acadp_custom_add_login_logout_menu', 10, 2 ); function acadp_custom_add_login_logout_menu( $items, $args ) { if ( ! is_user_logged_in() ) { $items .= '<li style="float: right;"><a href="' . esc_url( acadp_get_user_login_page_link() ) . '">' . __( 'Log in' ) . '</a></li>'; } else { $items .= '<li style="float: right;"><a href="' . esc_url( wp_logout_url( acadp_get_user_login_page_link() ) ) . '">' . __( 'Log out' ) . '</a></li>'; } return $items; }Hope this solved your issue!
ThanksForum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Error on fronendHi,
Please contact your hosting and check whether they blocked the below file,
https://example.com/wp-admin/admin-ajax.phpAlso kindly check the below forum post,
https://wordpress.stackexchange.com/questions/106252/failed-to-load-wp-admin-admin-ajax-phpIf it is blocked, please ask your hosting to unblock it and check it again.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Custom fields cssHi,
To remove the Listing ID,
Kindly add the below CSS code in your theme’s style.css file or in the “Advanced CSS” option of your theme’s customizer panel to hide the Listing ID.
.acadp-listing .acadp-field-id{display: none !important;
}
Regarding the custom fields on 2 lines,
Sorry, currently this option is not available.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] 2 search formsHi,
Sorry, there is no option to have a search form that shows data of the listing if it belongs to one particular category.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Conflict with PHP 8.0.28Hi,
We double checked this in our local and we didn’t get any issues. Kindly submit a ticket on our site https://pluginsware.com/submit-a-ticket/ where our tech team will guide you.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] A lot of spamHi,
We assume that the account is created manually to spam. Actually, we are using WordPress login and registration, So you can use any WordPress plugin that blocks email address and block the email address that causes the issue.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Create demo Home PageHi,
It is a custom theme that we developed for our demo. To know more about it, please submit a ticket on our site https://pluginsware.com/submit-a-ticket/
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Conflict with PHP 8.0.28Hi,
Actually, we developed our latest version in PHP 8. We didn’t face this issue earlier. Anyhow, we will check this again and let you know ASAP.
Thanks