Title: pluginsware's Replies - page 17 | WordPress.org

---

# pluginsware

  [  ](https://wordpress.org/support/users/pluginsware/)

 *   [Profile](https://wordpress.org/support/users/pluginsware/)
 *   [Topics Started](https://wordpress.org/support/users/pluginsware/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pluginsware/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pluginsware/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pluginsware/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pluginsware/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pluginsware/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 241 through 255 (of 1,133 total)

[←](https://wordpress.org/support/users/pluginsware/replies/page/16/?output_format=md)
[1](https://wordpress.org/support/users/pluginsware/replies/?output_format=md) [2](https://wordpress.org/support/users/pluginsware/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/pluginsware/replies/page/3/?output_format=md)…
[16](https://wordpress.org/support/users/pluginsware/replies/page/16/?output_format=md)
17 [18](https://wordpress.org/support/users/pluginsware/replies/page/18/?output_format=md)…
[74](https://wordpress.org/support/users/pluginsware/replies/page/74/?output_format=md)
[75](https://wordpress.org/support/users/pluginsware/replies/page/75/?output_format=md)
[76](https://wordpress.org/support/users/pluginsware/replies/page/76/?output_format=md)
[→](https://wordpress.org/support/users/pluginsware/replies/page/18/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Add words to category archive title](https://wordpress.org/support/topic/add-words-to-category-archive-title/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/add-words-to-category-archive-title/#post-13776449)
 * Hi,
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Related listings in the single listing page](https://wordpress.org/support/topic/related-listings-in-the-single-listing-page/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/related-listings-in-the-single-listing-page/#post-13775347)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Add words to category archive title](https://wordpress.org/support/topic/add-words-to-category-archive-title/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/add-words-to-category-archive-title/#post-13758058)
 * Hi,
 *  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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Single Listing Permalink](https://wordpress.org/support/topic/single-listing-permalink/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/single-listing-permalink/#post-13729467)
 * Hi,
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NSFW] [Advanced Classifieds & Directory Pro] Shortcode “Single page listing”](https://wordpress.org/support/topic/shortcode-single-page-listing/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/shortcode-single-page-listing/#post-13729143)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Can hide front end image URL?](https://wordpress.org/support/topic/can-hide-front-end-image-url/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/can-hide-front-end-image-url/#post-13696402)
 * Hi,
 *  Sorry, it is not possible to hide the image URL in the front-end.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Report abuse in single listing is not working](https://wordpress.org/support/topic/report-abuse-in-single-listing-is-not-working/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/report-abuse-in-single-listing-is-not-working/#post-13690699)
 * 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/](https://wordpress.org/plugins/email-log/))
   on your site and check where the emails are struck.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Manage any listings available only to administrator](https://wordpress.org/support/topic/manage-any-listings-available-only-to-administrator/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/manage-any-listings-available-only-to-administrator/#post-13681076)
 * 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](http://prntscr.com/vly4bu)
 * In the frontend, we will take note of this and look into it in the future.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Contact listing owner doesn’t look to work !](https://wordpress.org/support/topic/contact-listing-owner-doesnt-look-to-work/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/contact-listing-owner-doesnt-look-to-work/#post-13676109)
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Can you organize another way that the content is viewed on the mobile phone?](https://wordpress.org/support/topic/can-you-organize-another-way-that-the-content-is-viewed-on-the-mobile-phone/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/can-you-organize-another-way-that-the-content-is-viewed-on-the-mobile-phone/#post-13676097)
 * 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
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Add a Read More Button on the All Listing page](https://wordpress.org/support/topic/add-a-read-more-button-on-the-all-listing-page/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/add-a-read-more-button-on-the-all-listing-page/#post-13648148)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Bump Option ?](https://wordpress.org/support/topic/bump-option/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/bump-option/#post-13642058)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Description sigle page listing](https://wordpress.org/support/topic/description-sigle-page-listing/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/description-sigle-page-listing/#post-13609250)
 * Hi,
 *  Actually, On the single listing page, the full description will be displayed.
   There is no option to make it small.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Captcha not working](https://wordpress.org/support/topic/captcha-not-working-47/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/captcha-not-working-47/#post-13584374)
 * Hi,
 *  Seems to be a strange issue. Kindly submit a ticket on our site [https://pluginsware.com/submit-a-ticket/](https://pluginsware.com/submit-a-ticket/)
   where our tech team will check and update you.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Classifieds & Directory Pro] Please fix the Premium Link in your Plugin Description](https://wordpress.org/support/topic/please-fix-the-premium-link-in-your-plugin-description/)
 *  Plugin Author [pluginsware](https://wordpress.org/support/users/pluginsware/)
 * (@pluginsware)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/please-fix-the-premium-link-in-your-plugin-description/#post-13571824)
 * Hi,
 *  Thanks for notifying this issue. We fixed it, kindly check it now and let me
   know if you still face the issue.
 * Thanks

Viewing 15 replies - 241 through 255 (of 1,133 total)

[←](https://wordpress.org/support/users/pluginsware/replies/page/16/?output_format=md)
[1](https://wordpress.org/support/users/pluginsware/replies/?output_format=md) [2](https://wordpress.org/support/users/pluginsware/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/pluginsware/replies/page/3/?output_format=md)…
[16](https://wordpress.org/support/users/pluginsware/replies/page/16/?output_format=md)
17 [18](https://wordpress.org/support/users/pluginsware/replies/page/18/?output_format=md)…
[74](https://wordpress.org/support/users/pluginsware/replies/page/74/?output_format=md)
[75](https://wordpress.org/support/users/pluginsware/replies/page/75/?output_format=md)
[76](https://wordpress.org/support/users/pluginsware/replies/page/76/?output_format=md)
[→](https://wordpress.org/support/users/pluginsware/replies/page/18/?output_format=md)