This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

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

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

    Dear sir or madam

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

    Respectfully yours

    #11095
    Ernest MarcinkoErnest 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!

    #11096
    pubpypubpy
    Participant

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

    • This reply was modified 9 years, 6 months ago by pubpypubpy.
    #11098
    Ernest MarcinkoErnest 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.

    #11103
    pubpypubpy
    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 9 years, 6 months ago by pubpypubpy.
    #11104
    pubpypubpy
    Participant

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

    #11106
    Ernest MarcinkoErnest 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.

    #11114
    pubpypubpy
    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 MarcinkoErnest Marcinko
    Keymaster

    Hi,

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

    [code]None of the server’s authentication methods were accepted.[/code]

    Do I need special settings to connect?

    #11117
    pubpypubpy
    Participant

    You cannot access this content.

    #11121
    pubpypubpy
    Participant

    Hello!

    Do you check my problem?

    #11122
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

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

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

    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.

    #11123
    pubpypubpy
    Participant

    You cannot access this content.

    #11124
    Ernest MarcinkoErnest 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: http://i.imgur.com/HNB02EN.png

    Now it will return job listings as well.

    #11125
    pubpypubpy
    Participant

    Hello!

    thank you.

Viewing 15 posts - 1 through 15 (of 18 total)
  • You must be logged in to reply to this topic.