BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,601 through 5,610 (of 15,332 total)
  • Author
    Posts
  • in reply to: Search functionality #379099
    Steven Zahm
    Keymaster

    @ Heath

    My best guess at this point is that the server does not actually support FULLTEXT searches.

    But, like I said…

    Since it still does not work, I will need a temp admin account with the Query Monitor plugin installed so I can view/debug the search query being generated.

    in reply to: Controlling the submission process #379089
    Steven Zahm
    Keymaster

    @ Reed

    Yes, see this quick tip on how to change strings in Connections. The same will work with Form, just use connections_form for the text domain. The original string will be Please wait, your submission is being processed.

    Hope that helps!

    in reply to: Search functionality #379087
    Steven Zahm
    Keymaster

    @ Heath

    Are you certain you installed the version I sent via email? I did a quick test and the exact match was the first match.

    Can you update to 8.5.17? I included the tweak in that release yesterday. The search results message will however still show individual keywords because I forgot about that. I’m going to fix this right now … but to be clear, this search results message would not actually effect the search results.

    Any way, please update and give it a test. If it still does not work, I will need a temp admin account with the Query Monitor plugin installed so I can view/debug the search query being generated.

    in reply to: CSV Export #379085
    Steven Zahm
    Keymaster

    @ Brett

    No, it is not … that said, CSV Export is a built in feature found on the Connections : Tools admin page. here’s the link to the docs:

    http://connections-pro.com/documentation/tools/#Export

    Hope that helps!

    in reply to: Add options to repeatable field (Phone Numbers) #379004
    Steven Zahm
    Keymaster

    @ ottomek

    re: How could I add 3 or more phone number labels and options to the Phone Number repeatable field dropdown?

    It is possible to add custom phone types. Use this code snippet:

    add_filter( 'cn_phone_options', 'cn_add_new_phone_types' );
    
    function cn_add_new_phone_types( $options ) {
    
        $new = array(
            'phone_one'   => 'Phone One',
            'phone_two'   => 'Phone Two',
            'phone_three' => 'Phone Three',
            );
    
        $options = $new + $options;
    
        return $options;
    }
    

    Hope that helps!

    in reply to: Link not connecting entry with WP login #379003
    Steven Zahm
    Keymaster

    @ ottomek

    re: Ok I found my error. The Member listing was already linked to another email address before I updated this. So I just started fresh with a new member/email and that worked.

    Great to hear you figured it out! Just to clarify… the links that are made are persist so even after email changes the link will remain between the original user and entry.

    re: Question though, is the login provided in the Member Login widget the same url as the wp-admin user login? Maybe it’s my web host but when I try to login through the widget I get a lot of ‘Page not found’ on the site/server. But if I just go to the wp-admin login page as regular user it works.

    That’s interesting as that should not happen. The form rendered in the widget is the exact same form rendered by WordPress on the wp-admin login page. If fact they both use the exact same core WordPress function to render the form on the page. The only real major difference is that the login widget is set to redirect back to the page that the user was on after a successful login whereas the admin login redirects to the admin dashboard.

    I just did a test login with an invalid user/pass (since I do not have a valid one) on your site and it properly redirected to the wp-admin login displaying the error message.

    Do you by chance have another plugin that configures user login redirect? This could cause errors if it were setup to redirect to a non existing page? It would override the widget login redirect.

    Hope that helps, let me know.

    in reply to: Default entry & remove fieldsets #379002
    Steven Zahm
    Keymaster

    @ ottomek

    re: What would the snippet be to make the default entries Individuals?

    The default for a new entry is an Individual, there is no need to make any changes. Am I misunderstanding the question?

    re: I see where to change text/name but what is the ID for Individual entries?

    Sorry, but I do not understand. Could you give more details?

    re: We want to globally hide or remove several extra fieldsets we are not using for members (Logo, Messenger IDs, Social Media IDs, etc). Not from the Form extension but from within their user area completely when they login and update info.

    Well, they could be unregistered, but that would also remove it them from Form but it already has options to hide and rearrange the fieldsets. Here’s the code snippet to remove Logo, Messenger IDs, Social Media IDs:

    add_action( 'admin_init', 'cn_remove_metaboxes' );
    
    function cn_remove_metaboxes() {
    
        cnMetaboxAPI::remove( 'metabox-logo' );
        cnMetaboxAPI::remove( 'metabox-messenger' );
        cnMetaboxAPI::remove( 'metabox-social-media' );
        cnMetaboxAPI::remove( 'metabox-logo' );
    }
    

    The one thing I am uncertain of is how this will affect Connections when adding/updating entries. The one thing that I am pretty certain is if an existing entry has data on one of these and it is then updated, that data will be “lost” because removing these will have the same effect (on submission) as removing the data when editing an entry. Depending on your needs, this may not even be an issue.

    Hope that helps!

    in reply to: Cannot update entry #379001
    Steven Zahm
    Keymaster

    @ Jo-ann

    Can you add and update other entries?

    in reply to: Controlling the submission process #379000
    Steven Zahm
    Keymaster

    @ Reed

    re: Is there a way to bypass this and just got to the redirect page I have setup in the admin?

    No, there is not a way to bypass it. The submission occur in the background via an ajax request. The message being displayed until a response is receive back from the server saying the submission has been received and no errors occurred.

    Now, that said, Form does have a redirect option in the admin which can be used to do a redirect after a new submission. Is this where you are configuring the redirect? Or are you using something else to process redirects?

    in reply to: Line height issue in Enfold #378982
    Steven Zahm
    Keymaster

    @ Tian

    Great to hear that was the solution and that your directory is displaying properly again!

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!

    https://wordpress.org/support/view/plugin-reviews/connections

Viewing 10 posts - 5,601 through 5,610 (of 15,332 total)