Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › support for data searching all subdomains custom type post
- This topic has 17 replies, 2 voices, and was last updated 9 years, 5 months ago by
Ernest Marcinko.
-
AuthorPosts
-
December 2, 2016 at 9:14 am #11091
pubpy
ParticipantDear sir or madam
please check and read file that attach below [ pubpy document].
Respectfully yours
December 2, 2016 at 10:51 am #11095Ernest Marcinko
KeymasterHi!
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!
December 2, 2016 at 11:18 am #11096pubpy
Participantyou can log in this url :
http://pubpy.com/bowwow/-
This reply was modified 9 years, 6 months ago by
pubpy.
December 2, 2016 at 1:47 pm #11098Ernest Marcinko
KeymasterHi!
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.
December 2, 2016 at 2:20 pm #11103pubpy
Participantok 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
pubpy.
December 2, 2016 at 2:34 pm #11104pubpy
ParticipantHello!
how can i add more custom post types ? because custom post types have [wlbdash, postmen_sent_mail];December 2, 2016 at 3:53 pm #11106Ernest Marcinko
KeymasterHi,
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.
December 5, 2016 at 10:04 am #11114pubpy
ParticipantHello!
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 #11116Ernest Marcinko
KeymasterHi,
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?
December 5, 2016 at 10:33 am #11117pubpy
ParticipantYou cannot access this content.
December 5, 2016 at 12:51 pm #11121pubpy
ParticipantHello!
Do you check my problem?
December 5, 2016 at 1:09 pm #11122Ernest Marcinko
KeymasterHi,
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.
December 5, 2016 at 1:31 pm #11123pubpy
ParticipantYou cannot access this content.
December 5, 2016 at 2:26 pm #11124Ernest Marcinko
KeymasterHi,
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.
December 5, 2016 at 2:32 pm #11125pubpy
ParticipantHello!
thank you.
-
This reply was modified 9 years, 6 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.