pluginsware
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Add words to category archive titleHi,
Kindly try adding the following code to the bottom of your theme’s functions.php file.
function acadp_custom_category_title( $title, $id = 0 ) { if ( ! in_the_loop() || ! is_main_query() ) { return $title; } global $post, $wp_query; $post_id = $wp_query->get_queried_object_id(); if ( $id > 0 && $id != $post_id ) { return $title; } $page_settings = get_option( 'acadp_page_settings' ); // Change Category page title if ( $post->ID == $page_settings['category'] ) { if ( $slug = get_query_var( 'acadp_category' ) ) { $term = get_term_by( 'slug', $slug, 'acadp_categories' ); $title = 'Courses in ' . $term->name; } } return $title; } add_filter( 'the_title', 'acadp_custom_category_title', 999, 2 );Hope this helps you
Thanks
Hi,
You need to enable our “ACADP Listings” Widget and check the “Related Listings” option in the widget settings to enable related listings.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Add words to category archive titleHi,
Actually, we are using custom pages for the categories archive listings page. So please send me the link to the categories archive listings page to check and update you.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Single Listing PermalinkHi,
Kindly replace your existing code with the following,
function acadp_remove_blog_prefix( $args, $post_type ) {
if ( $post_type == ‘acadp_listings’ ) {
$args[‘rewrite’][‘with_front’] = false;
}return $args;
}add_filter( ‘register_post_type_args’, ‘acadp_remove_blog_prefix’, 10, 2 );
Hope this solved your issue!
Thanks
Forum: Plugins
In reply to: [NSFW] [Advanced Classifieds & Directory Pro] Shortcode “Single page listing”Hi,
We checked your site and we don’t know where you are using our plugin. Kindly send me the link where you have our plugin to check the issue.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Can hide front end image URL?Hi,
Sorry, it is not possible to hide the image URL in the front-end.
Thanks
Hi,
Please check whether you have checked the emails that you need in the email settings.
If still, you have the issue, Please check whether the emails are working from other plugins that you are installed. If it doesn’t work on your whole site, then the issue must be with your hosting email server. Please contact your hosting provider. Also please install the Email log plugin (https://wordpress.org/plugins/email-log/) on your site and check where the emails are struck.
Thanks
Hi,
On the site front-end, the users can view only their listings. It is not possible to edit or delete other’s listing.
But in the back-end, you can allow it by adding these capabilities http://prntscr.com/vly4bu
In the frontend, we will take note of this and look into it in the future.
Thanks
Hi,
Contact form emails use a lightly altered header where this is not possible with other out sent emails.
1. Kindly make sure both the sender and receiver are not the same people (email). I mean, you’re the AD owner and you’re trying to contact yourself using the same email address.
2. [OR] Did you installed any plugin recently that handle emails. We use WordPress’s built-in wp_mail() and chances are a plugin in your website modifying the email headers sent out using this method and email clients have trouble reading them.
3. [OR] I believe the emails are in your SPAM folder. Install a plugin named “Log Emails”, then try the same again. Then, visit the “Tools => Log Emails” menu from your WordPress dashboard and check if there any email content logged there. If you can see some content here, then our plugin has sent the email but the receiver has some problem accepting the emails from your server. it’s highly possible that the mail has been kidnapped or killed after that. If you can check the log of your mail server, it could give you some clues. Spam filter often causes this kind of problem.
You must be using Yahoo. Try using a different email account(Gmail) and see if the email receives now. At least in your SPAM folder. If you can see the email in other email accounts, I would recommend using a professional SMTP service like SENDGRID.
Thanks
Hi,
Actually, this layout positioning totally depends on the theme that you use. You need to contact your theme support team to change it. Our plugin will display the post where the theme allows to show it and also displays the widgets where the theme displays widgets.
Thanks
Hi,
For grid view,
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listings/acadp-public-listings-grid-display.php
For list view,
/wp-content/plugins/advanced-classifieds-and-directory-pro/public/partials/listings/acadp-public-listings-list-display.php
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Bump Option ?Hi,
Sorry, currently we don’t have a Bump ad feature. But we will take note of this and add it in the future.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Description sigle page listingHi,
Actually, On the single listing page, the full description will be displayed. There is no option to make it small.
Thanks
Forum: Plugins
In reply to: [Advanced Classifieds & Directory Pro] Captcha not workingHi,
Seems to be a strange issue. Kindly submit a ticket on our site https://pluginsware.com/submit-a-ticket/ where our tech team will check and update you.
Thanks
Hi,
Thanks for notifying this issue. We fixed it, kindly check it now and let me know if you still face the issue.
Thanks