Reply To: [Assigned] Support Search Capabilities Need Improvement
Hi Wayne, Thanks for the feedback, we are using google as the site search engine, and I put it into our to-do list as a feature request, our developers will take care of it.
View ArticleReply To: [Waiting for user confirmation] Support Search Capabilities Need...
I look forward to it. As always, thanks for your response.
View ArticleReply To: [Assigned] Parametric search many-to-many
Hi Ilkka, You are right, currently views filter in many to many relationships posts, will conduct the problem "the search results may include multiple memberships even though showing one result...
View ArticleSelection box showing child posts in second selectiom box (CRED)
Dear, I am currently building a tour sales website. I have the custom post type 'Tours' with the post type 'Tour dates' under which visitors can see the departure and finish dates (2 separate fields)....
View ArticleReply To: [Waiting for user confirmation] Product Category Slider
Please, this would be great!
View ArticleReply To: [Assigned] Types plugin crashes website when ativated
Dear Luis, Based on the debugging message, it seems you are missing "tx.php" which the script is looking in this path:...
View ArticleReply To: [Assigned] Parametric search many-to-many
With the Views filter hook wpv_filter_query_post_process, You need create custom PHP function for it, For example: add_filter( 'wpv_filter_query_post_process', 'prefix_modify_empty_query', 10, 3 );...
View ArticleReply To: [Assigned] Field to Save as Taxonomy
Please try PHP function in_array(), like this: $arr = array('Rent', 'New', 'Free'); if (isset($_POST['wpcf-contract']) && in_array($_POST['wpcf-contract'], $arr)) in_array Checks if a value...
View ArticleReply To: [Assigned] Post relationship for many-to-many
Dear gregL-5, You are correct. Currently this can be achieved by creating an intermediary post type to handle the relationship. To have a direct edit box it would require to create it in the frontend...
View ArticleReply To: [Assigned] Non-admin users cannot view posts
Dear joshuaM, I need to request temporary access (wp-admin) to a test site where the problem has been replicated in order to be of better help. I've enabled the private details box for you. You will...
View ArticleReply To: [Assigned] table sorting not searching
Dear loriD, Table sorting is achievable by using JavaScript or jQuery plugins. One example is https://yoast.com/articles/sortable-table/ but if you search the web, you will find many more. Please let...
View ArticleIncrease Number of items per page
Hello, Currently the maximum number of items per page is limited to 49. I have a very powerful server and I need to increase that number significantly, please let me know how can I increase this...
View ArticleReply To: [Waiting for user confirmation] Post relationship for many-to-many
Thankyou Pawel, just as I thought. The intermediary post type makes sense in some circumstances (eg person-contract-hirecar) but not in my circumstance…it would only create more work for the user. I'm...
View ArticleReply To: [Assigned] Edit form is not working fine
Dear abdullahE, I have checked your site and it seems that you have some errors in the JS code which prevent the form fields from working properly. You can see them in the Chrome or Firefox...
View ArticleReply To: [Waiting for user confirmation] Fliter by taxonomy not working AND...
Hi, Thank you for your answer. This function does the trick but there was an error with get_usermeta() As explained here (http://codex.wordpress.org/Function_Reference/get_user_meta) it has been...
View ArticleReply To: [Assigned] How to filter by current category archive?
Please try this: 1) modify codes in your theme/functions.php as below: add_shortcode('wpv_show_curent_tax_slug', 'wpv_show_curent_tax_slug_func'); function wpv_show_curent_tax_slug_func() { if(...
View ArticleReply To: [Assigned] globally enabling full width genesis layout for a custom...
Hi Jim, Please try this: function full_width_layout_single_posts( $opt ) { if ( get_post_type() == 'concentration' ) { ... More help: http://codex.wordpress.org/Function_Reference/get_post_type
View ArticleStyling Pagination
Hello, i got this link: http://wp-types.com/forums/topic/limit-number-of-items-returned-in-view-with-numeric-navigation-at-the-bottom/#post-31828 on how to create custom pagination style bu @luoy.....
View ArticleReply To: [Assigned] Multisite & Cred Save Data Form ID (Functions.php)
The Form ID will not conflict, since each sub-site use different database tables to store your posts and CRED form, I do think above codes will solve this problem, please try and feedback if the...
View ArticleReply To: [Assigned] CPT with two Parents, only one Parent is pulling info...
Dear chantalM, I checked what's wrong with your site and found following issues (and spoiler alert: I have fixed them too!): The problem with the link in the popup: I changed the shortcode to the...
View Article