BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,701 through 5,710 (of 15,332 total)
  • Author
    Posts
  • in reply to: Email not deiivered #377405
    Steven Zahm
    Keymaster

    @ Alison

    The from email address comes from the Contact form what every you enter into the “Email address:” field and the to email address comes from the email address that was added to the entry (the preferred if one set as preferred OR the first if more than one if preferred was not set, in that order). NOt sure that is what they are talking about though :/ Try checking the email address set on the WordPress General Settings admin page.

    If the email address are correct in all three locations then another plugin or theme is causing a conflict by removing the username from the email address.

    in reply to: Email link from list view #377401
    Steven Zahm
    Keymaster

    @ Alison

    Thanks that helps a lot in giving me more context and now I understand what you want. Off the top of my head, I can not think of a solution…

    Actually, try this code snippet:

    add_filter( 'cn_output_email_addresses', 'alison_email_contact_link', 11, 4 );
    
    function alison_email_contact_link( $block, $addresses, $entry, $atts ) {
    
        if ( $addresses ) {
    
            if ( ! cnQuery::getVar( 'cn-entry-slug' ) ) {
    
                $name = $entry->getName( array( 'format' => '%first%' ) );
    
                $permalink = $entry->getPermalink() . '#cnct-email-' . $entry->getSlug();
    
                $row = '<span class="email-address"><a class="value" title="Email ' . $name . '" href="' . $permalink . '">Email ' . $name . '</a></span>';
    
                $block = '<span class="email-address-block">' . PHP_EOL . $row . PHP_EOL . '</span>';
            }
        }
    
        return $block;
    }
    

    Hope that helps!

    in reply to: sites moved, no longer working #377396
    Steven Zahm
    Keymaster

    @ Tim

    I can only view the dive partners page, the others I still see the coming soon page.

    On those other two pages, do they only say no result too?

    Do you see the entries in the admin of each site?

    Can you see if Updraft properly migrated the database tables for Connections and its data?

    I do not believe reinstalling will resolve anything as from what I can tell the sata is simply missing or not accessable.

    If you can give me a temp super admin login, I’ll take a look. Also install Query Monitor and Database Browser (not sure if this is multisite compatible :/ ) so I can use them for debugging.

    in reply to: drop down menu #377311
    Steven Zahm
    Keymaster

    @ agathe herrmann

    My best guess is that the CSS for Connections was inadvertently disabled. Go to the Connections : Settings admin page and enable the CSS option under the Advanced tab to re-enable the plugin’s CSS.

    Hope that helps! Let me know.

    in reply to: Conflict with Jupiter theme #377306
    Steven Zahm
    Keymaster

    @ Carolin

    Actually, that is not entirely ood… you as a user on a host can set the max memory limit for PHP to anything you want and PHP will happily report that user set limit. But, a web host can set a “hard limit” so no matter what you set the limit to the server will actually limit you to host’s setting. My limited experience, generally, a host will not share what the actual “hard limit” is but most of the hosts that I have hosted with seemed to support a hard limit of 128MB to 256MB.

    Anyway, let’s not jinx it :)

    in reply to: One of our admin accounts can't see entries #377305
    Steven Zahm
    Keymaster

    @ Eric

    re: I logged in to my client’s admin account and saw the issue first-hand, then looked again at the filtering options. It turned out that for some reason it was set to Show Organizations rather than Show All entries; since all of the entries are for individuals, no entries were listed. As soon as I changed that popup and clicked the Filter button, the problem went away.

    Yep, filters are persistent. I’m guessing the user applied the filter and forgot that they did.

    re: I noticed that the UI for choosing Filter by Letter was a bit odd. At first it showed only an individual letter, then later (after I clicked the Filter button as above) it showed all letters plus a small rectangle that I guessed (correctly) would show all letters.

    The character filtering is not persistent. Just navigating back to the manage page would reset the character filter.

    I have no clue what that small rectangle is that you’re speaking of??? The only thing I can think of is that there is an entry (one or more) that has not name which could cause a “blank” character to be displayed as a filter option which, if that were the case, act like a character reset. But that’s just a guess.

    re: If in fact this is how it is set up visually, I suggest a small improvement would be to change the rectangle next to the list of letters to a button that says “show all letters” or similar. Otherwise it’s a bit hard to figure out how to turn off filtering by letter…

    It is on my todo list to add a character filter reset button to the page when it is being filtered by character. This button would simply be a link back to the page, like clicking from the menu.

    Any way, glad to hear it was resolved.

    in reply to: Multilingual Connections #377304
    Steven Zahm
    Keymaster

    @ Claude

    re: Does that mean that if I was going the multisite way with a tool like Multisite Language Switcher I could have Connections running in a multilingual mode?

    Maybe… comes down to how that plugin manages translations. If it loads the appropriate plugin translation files for the selected language per sub site, then maybe, yes. You would “simply” create the same entry multiple times, one for each language on the corresponding sub site.

    re: Have you had any experience with that setup?

    Nope, sorry I have not.

    re: Am I right to understand that I would need a license per language?

    Honestly, not exactly sure because I have not tested how license activation works on subdomain mapped multisite install. You will if each language was a separate domain. I think if you do subdomain mapped sites you’ll only need a single site license. Either way, in this specific use case I can and would manually activate the licenses on the subdomains for you so you would only need a single site license.

    Hope that answers your questions thoroughly!

    in reply to: Change border color in Tile Template #377297
    Steven Zahm
    Keymaster

    @ Cindee

    re: But when I tried to change the border color from #d3d3d3 to #5c2c81 in all the css files, nothing changes.

    Delete the tile-plus.min.css file and make the change to the tile-plus.css and then force refresh your browser so the browser downloads the new version rather than using the browser’s locally cached version.

    re: I then tried to add “border: 1px solid #5c2c81;” to the shortcode, but still nothing changed.

    Remove that from the shortcode the template/Connections does not have that as an available option and it could break the shortcode, keep it from working right.

    Hope that helps! Let me know!

    in reply to: Vcards next to each other #377286
    Steven Zahm
    Keymaster

    @ J De Boer

    There are template available which have a columnar layout such as these

    Hope that answers your question.

    in reply to: Email link from list view #377284
    Steven Zahm
    Keymaster

    @ Alison

    The link s you gave in your reply link to the user’s profile page not the discussion thread. Could you give that link so I can get a little more context on what you are asking?

Viewing 10 posts - 5,701 through 5,710 (of 15,332 total)