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 7 years, 9 months ago.
- AuthorPosts
- December 2, 2016 at 9:14 am #11091
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.December 2, 2016 at 10:51 am #11095Hi!
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 :)
December 2, 2016 at 11:18 am #11096you can log in this url :
http://pubpy.com/bowwow/- This reply was modified 7 years, 9 months ago by pubpy.
December 2, 2016 at 1:47 pm #11098Hi!
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 :)
December 2, 2016 at 2:20 pm #11103ok 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, 9 months ago by pubpy.
December 2, 2016 at 2:34 pm #11104Hello!
how can i add more custom post types ? because custom post types have [wlbdash, postmen_sent_mail];December 2, 2016 at 3:53 pm #11106Hi,
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 :)
December 5, 2016 at 10:04 am #11114Hello!
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
December 5, 2016 at 10:21 am #11116Hi,
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 :)
December 5, 2016 at 10:33 am #11117You cannot access this content.December 5, 2016 at 12:51 pm #11121Hello!
Do you check my problem?
December 5, 2016 at 1:09 pm #11122Hi,
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 :)
December 5, 2016 at 1:31 pm #11123You cannot access this content.December 5, 2016 at 2:26 pm #11124Hi,
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 :)
December 5, 2016 at 2:32 pm #11125Hello!
thank you.
- AuthorPosts
You must be logged in to reply to this topic.