support for data searching all subdomains custom type post

Home Forums Product Support Forums Ajax Search Pro for WordPress Support support for data searching all subdomains custom type post

This topic contains 17 replies, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 7 years, 4 months ago.

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #11091
    pubpy
    pubpy
    Participant

    Dear sir or madam

    please check and read file that attach below [ pubpy document].

    Respectfully yours

    Attachments:
    You must be logged in to view attached files.
    #11095
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi!

    Can you please tell me on which URL can I log in? I have tried /wp-admin/ and wp-login.php but it’s not working. Thank you!

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #11096
    pubpy
    pubpy
    Participant

    you can log in this url :
    http://pubpy.com/bowwow/

    • This reply was modified 7 years, 4 months ago by pubpy pubpy.
    #11098
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi!

    From what I can see some of the custom post types are not selectable, because they don’t exist on the main site. I think we can fix that with a custom code snippet, but I will have to know the custom post type names.

    Can you list the post type names or give me access to check all the post types you might need? Currently it’s only searching posts and pages.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #11103
    pubpy
    pubpy
    Participant

    ok i need you access to check all post type

    example :
    http://jobs.pubpy.com/wp-admin/edit.php?post_type=job_listing -> Jobs Listing ( when we search it , it can show results )

    it is not only seaching post and pages

    we need search data on posts, on pages, job listing…, all data on subdomain.

    • This reply was modified 7 years, 4 months ago by pubpy pubpy.
    #11104
    pubpy
    pubpy
    Participant

    Hello!
    how can i add more custom post types ? because custom post types have [wlbdash, postmen_sent_mail];

    #11106
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    You can’t add custom post types on the back-end which doesn’t exist on the current installation (current site). That is why I asked if you know the list of the custom post types you need.

    For that you will have to use a custom filter instead. Try putting this code to the functions.php file in your active theme directory (from line 3):

    Make sure to enter the post types into the $post_type array variable.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #11114
    pubpy
    pubpy
    Participant

    Hello!

    i try to use below this function in function.php

    add_filter( ‘asp_query_args’, ‘asp_manual_post_types’, 2, 2 );
    function asp_manual_post_types($args, $search_id) {
    // Enter the post types into this array
    $post_types = array(
    ‘post’,
    ‘page’,
    ‘job_listing’
    );

    // !! Do not change anything below this line !!
    $args[“post_type”] = array_unique(array_merge($args[“post_type”], $post_types));
    return $args;
    }

    but i can’t get results for data searching in variable post type [ job_listing ]. please check it to me. thank you

    #11116
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    I’m not able to connect to your server via FTP or SFTP. I’m getting the following error:

    None of the server's authentication methods were accepted.

    Do I need special settings to connect?

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #11117
    pubpy
    pubpy
    Participant
    You cannot access this content.
    #11121
    pubpy
    pubpy
    Participant

    Hello!

    Do you check my problem?

    #11122
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    It still doesn’t let me connect with the key file:

    [SFTP] Host key accepted
    [SFTP] Key authentication denied.

    Please note that support responses may take up to 0-48 hours (2 business days), depending on how many tickets and other inquiries are open.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #11123
    pubpy
    pubpy
    Participant
    You cannot access this content.
    #11124
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    I was able to log in, the username was specified incorrectly in your ticket information 🙂

    I have found the problem, it was because of a misconfiguration. You had a custom field filter enabled, which basically prevented some items from displaying. I have deleted the filter: https://i.imgur.com/HNB02EN.png

    Now it will return job listings as well.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #11125
    pubpy
    pubpy
    Participant

    Hello!

    thank you.

Viewing 15 posts - 1 through 15 (of 18 total)

You must be logged in to reply to this topic.