BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,801 through 5,810 (of 15,332 total)
  • Author
    Posts
  • in reply to: plugins will not update #375436
    Steven Zahm
    Keymaster

    @ John

    I can look too, but I’ll need the email address(es) which may have been used to make the purchase and the like name used to make the purchase. An approximate date will help too.

    in reply to: show member by country and town #375435
    Steven Zahm
    Keymaster

    @ Sandra

    If I understand the question correctly, you would like to change the sort order to country, town and then by name? Is that correct? If it is, then you can use the order_by shortcode option. Here’s an exmaple:

    [connections order_by="country,city,sort_column"]

    The sort_column attribute is the entry name.

    Hope that helps! Let me know.

    in reply to: Transferring Logo Images #375416
    Steven Zahm
    Keymaster

    @ Carlos

    All the image files are saved in this folder:

    ../wp-content/uploads/connections-images/

    You can use FTP to download from the source site and upload to the destination site. But this will not automagically link the images to the entries. To do that, you must migrate the data from the source site to the destination.

    If you are moving the entire site, then I recommend BackupBuddy or the Duplicator plugin.

    If you are moving just the directory, then the process in a bit more complicated because that requires exporting the Connections tables from the WordPress database as a SQl file and then importing that SQL into the new database. Sounds complicated but it actually fairly straightforward. At a very basic level that is all the BackupBuddy or the Duplicator plugin do, except with the entire WordPress database.

    Hope that helps!

    in reply to: Links Titles vs Shortcode #375415
    Steven Zahm
    Keymaster

    @ Claude

    You could use the cn_output_link hook to change the output for a link too, like so (untested):

    add_filter( 'cn_output_link', 'Claude_cn_output_link', 10, 4 );
    
    function Claude_cn_output_link( $html, $link, $entry, $atts) {
    
        $targetOptions = array( 'new' => '_blank', 'same' => '_self' );
    
        $url    = cnSanitize::field( 'url', $link->url );
        $target = array_key_exists( $link->target, $targetOptions ) ? $targetOptions[ $link->target ] : '_self';
        $follow = $link->follow ? '' : 'rel="nofollow"';
    
        $html = '<span class="liens_en" style="font-weight:700"><a class="url" href="' . $url .  '" ' . $target . ' ' . $follow . '>Visit us on the web !</a></span>';
    
        return $html;
    }
    

    Hope that helps!

    • This reply was modified 10 years, 4 months ago by Steven Zahm. Reason: Added missing semi-colon
    in reply to: How many entries #375414
    Steven Zahm
    Keymaster

    @ Cátia

    My test site has about 30,000 entries. I’ve seen live sites with over 250,000 entries. The upper limit is very likely only limited by the server itself, much like WordPress is with page and post limits.

    Hope that answers your question.

    in reply to: Submission not working #375413
    Steven Zahm
    Keymaster

    @ Amy

    I just submitted a text with the organization name of “Connections”, no other details, and it seemed to submit just fine. Can you confirm that it did show up in your moderation queue?

    Also, the Alpine PhotoTile for Instagram plugin is still causing javascript errors.

    in reply to: Circled Template Formatting #375412
    Steven Zahm
    Keymaster

    @ Elizabeth

    The temp admin account, that is still just a subscriber account. I’ll need that changed so I can take a look.

    in reply to: Entries not showing up on page #375411
    Steven Zahm
    Keymaster

    @ ryanstoner

    I suspect that you are using a page caching plugin. Try flushing the page cache and force refreshing your browser.

    Hope that helps, let me know.

    in reply to: Can not update #375410
    Steven Zahm
    Keymaster

    @ Margaret

    re: I am unable to update from 8.5.4 to 8.5.14. The wheel keeps turning and turning and never stops. Maybe I need an intermediate update in between?

    No, you do not. You can upgrade 8.5.4 to 8.5.14. After you click upgrade, and the wheel spins for a while, what happens when you refresh the page? Is Connections updated or is WordPress reporting that it still needs updated?

    in reply to: Upgrade to multi-site #375409
    Steven Zahm
    Keymaster

    @ Paul

    errr… I mean 5/6/2017, not 5/5/2017.

Viewing 10 posts - 5,801 through 5,810 (of 15,332 total)