BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 10,361 through 10,370 (of 15,332 total)
  • Author
    Posts
  • Steven Zahm
    Keymaster

    @ Craig

    I’ve eliminated the bug with paginations reported in this comment. You’ll no longer have multiple pages for page 1 when there are multiple pages of entries.

    in reply to: Connections & Siteshot #301873
    Steven Zahm
    Keymaster

    @ Leonardo

    Currently, SiteShot only support the premium templates sold here, not the free core templates that come with the plugin.

    Hope that helps!

    in reply to: Dynamic image sizes in templates #301835
    Steven Zahm
    Keymaster

    @ Dani

    Yes, I can upload just thru the admin. The reason I also asked for FTP is because I want to make a backup of the images before deploying. The reason being that the images are being moved on demand as well. This is being done to be more WP compliant according to current best practices. Right now they are saved in the ../wp-content/connection_images/ folder. They will be moved to ../wp-content/uploads/connections-images/{entry-slug}/. Back when Connections first implemented image support there really was not a best practice other than saving them in the wp-content folder. The current best practice is to have images in the uploads folder.

    I don’t need to make the backup of the folder, you can… I just want to make sure it is done before I deploy just incase … because if something goes wrong, all images could be permanently deleted. I do not expect that to happen as it has not happened on others who are running the beta. Like I said, I do believe this code to be production ready, but with major changes like this, I really like to play it safe.

    in reply to: no permission to access settings? #301831
    Steven Zahm
    Keymaster

    Yep, the Code Snippets plugin is extremely useful … I keep all the random code I use to add to the functions.php file in their now … that way if theme’s are changed, no more hunting down the snippets from the old theme and transferring them.

    in reply to: Editing fields #301829
    Steven Zahm
    Keymaster

    @ Dani

    re: I thought the shortcode options only work with the premium templates?
    Correct, they only work with the premium templates. You mentioned possibly upgrade which is why I mention the shortcode options as an option.

    If you want to remove it from the PHP, there is a more complex option, using filters.

    For example to remove the label from links you can do use this filter:

    add_filter( 'cn_output_default_atts_link', 'cn_link_output_atts' );
    function cn_link_output_atts( $atts ) {
    
        $atts['format'] = '%title%';
    
        return $atts;
    }

    re: Also, there is an extra space in front of Contact that I would like to get rid of.
    That can be done by adjusting CSS. Add the following to your theme’s custom CSS area:

    .cn-entry-info span:first-child {
        display: block;
    }

    I hope that helps!

    Steven Zahm
    Keymaster

    @ Michael

    Sorry, no, a category hierarchy can not be imported. After you import your CSV file, you can go to the Connections : Categories admin page and adjust the the parent/child relationships. Hope that helps!

    in reply to: License activation limit has been reached #301821
    Steven Zahm
    Keymaster

    @ Alan

    Which product and support license key? I can manually make the adjustment. You can also manage the domains by going to the Purchase History page, clicking the View Licenses page and then clicking the Manage Sites link.

    I hope this helps … let me know.

    in reply to: Import complete but nothing shows in "manage" #301726
    Steven Zahm
    Keymaster

    @ Randy

    It can be posted here, please just be certain to check the private reply option before submitting. Alternatively, you cans end it using the contact link at the bottom of the page.

    in reply to: search "vic" #301716
    Steven Zahm
    Keymaster

    @ roy

    I was able to add a workaround that will return results with 2 and 3 character searches. There is a caveat though… the workaround involves the search searching for terms that begin with those characters. Example…

    If I searched for joy, I would get no results. Now I will, but results would include any term found that begins with joy, like Joyce. But if you were to search for Joy Longword only Joy Longword would be shown as a result. The actual query still drops Joy and only actually searches for Longword.

    Another enhancement is that the results are sorted by relevance as determined by the database (unless the search is only for a small word such as joy).

    I hope that becomes helpful.

    Steven Zahm
    Keymaster

    @ Magnus

    If I understand correctly … is sounds like you could use categories to create two directories one showing the medical terminology the other showing common language terminology.

    Here’s a FAQ on how to do with with the cMap template (which will work any template which supports the searchable category drop down.

    Hope that helps!

Viewing 10 posts - 10,361 through 10,370 (of 15,332 total)