BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 11,971 through 11,980 (of 15,332 total)
  • Author
    Posts
  • in reply to: Can't link to existing WP users. #279676
    Steven Zahm
    Keymaster

    @ kera

    The changes mentioned in this support topic have been released in the latest version of Link. Which version do you have installed? If it isn’t the latest, I highly recommend updating.

    in reply to: Gravity Forms integration #279675
    Steven Zahm
    Keymaster

    @ Elyssa

    I’m sure it can be done … but I’ve never used Gravity Forms before so I don;t really have any directions I can give you to accomplish that. Sorry.

    in reply to: Instagram Social Media option? #279674
    Steven Zahm
    Keymaster

    @ Daniel

    You would have to add Instagram here.

    You would then have to create the icons in various sizes and add then to the corresponding folder. I know that might sound a little cryptic, but it’ll make sence when you look at the folder structure here.

    I hope that helps!

    btw, this will be added in the next update.

    Steven Zahm
    Keymaster

    @ daniel

    Great to hear you have resolved the issue. Enjoy!

    in reply to: Custom Labels? #279672
    Steven Zahm
    Keymaster

    @ NetWarden

    To change field names. Install the Say What? plugin.

    It’ll add a new Text Changes menu item. Click Add New, enter the string exactly as shown in Connections, enter connections [notice the lack of capitalization, that's important!] as the domain and then enter your new text.

    The great thing about using this plugin is that it will be update safe and you can use it on any other plugin that has been properly internationalized.

    You can grab the latest dev build from Github. I suggest looking at the Hours extension at how to add custom fields. Several other dev are using the dev version on client sites, so it should the dev version should be mostly stable.

    Hope that helps!

    in reply to: Alpha Index links are incorrect #279666
    Steven Zahm
    Keymaster

    @ Lars

    I’d have to see the error actually occurring as I’ve never seen that behavior before.

    in reply to: Image resizing not working #279665
    Steven Zahm
    Keymaster

    @ Jeremy

    Since Slim Plus requires a specific image size for its layout, it dynamically generates the images on the fly. So, this means the logo image settings in the admin will not have an effect. The image_width option you have set in your shortcode will not have an effect since it is not a valid option for Slim Plus. I suggest removing that option. With that said, I do have a solution.

    Install the Code Snippets plugin. Create a new snippet with the following:

    function kidwell_image_atts( $atts ) {
    	
    	$atts['zc'] = 2;
    	
    	return $atts;
    }
    add_filter( 'cn_output_default_atts_image', 'kidwell_image_atts' );

    I hope that helps!

    in reply to: Exact Search? #279664
    Steven Zahm
    Keymaster

    @ Martin

    It seems your database table do not support FULLTEXT queries, so the search is falling back to partial string matching which yields less accurate results. The only thing I could do, if you give me a temp admin account, is edit the plugin code to remove the partial string matching. The results would then require a full match in order to be returned as a result. Would this work for you?

    in reply to: CAPTCHA #279662
    Steven Zahm
    Keymaster

    @ Brian

    Right now, if you wish to have captcha support, it would have to be custom coded. Will I add support for it? If I need to, as a last resort. Why, captcha is not only a spam deterrent, it is also a very good user deterrent. With that said, I do have several other methods of anti-spam measures that will be implemented in future versions of Form that are user transparent. Presently, spam doesn’t seem to be an issue. I’ve had the Form demo page going for well over a year and I have yet to receive a single spam.

    I hope that helps.

    Steven Zahm
    Keymaster

    @ NetWarden

    Yes, disabling pagination completely removes all pagination setting so all entry would be displayed with this shortcode. Now, you can make use of an undocumented option (but fully supported). The option is limit. So change your shortcode to this instead:

    [connections enable_pagination='false' limit=1 order_by='date_added|SORT_DESC' enable_search='false' enable_category_select='false']
    

    That should yield the results you want. Hope that helps!

Viewing 10 posts - 11,971 through 11,980 (of 15,332 total)