• Resolved Tekkaman

    (@tekkaman)


    Hello!

    First off, appreciate the plugin. Very instrumental in many projects I have worked on.

    One thing I was curious about was whether or not there was a way to constrain the image(s) displayed when using [cfdb-html filelinks=”img”]. At this time, I have only been capable of displaying the images in their native resolution, which is an issue when attempting to output multiple entries of data.

    What I’m attempting to do is display the entries of data and at the same time, whether by way of table (tried this) or something else, reduce the dimensions of the images to, say, 50x50px.

    Is this possible within the plugin itself or will it require PHP or JavaScript/jQuery?

    Thank you!

    http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Michael Simpson

    (@msimpson)

    Use filelinks=”url” instead, then manually create the IMG tag with the options you want. Eg:

    [cfdb-html form="myform" filelinks="url"]
    <img src="${your-image-field}" width="50" height="50">
    [/cfdb-html]
    Thread Starter Tekkaman

    (@tekkaman)

    I will attempt this in a second. Thank you so much for the prompt response!

    Thread Starter Tekkaman

    (@tekkaman)

    Hello again!

    I have successfully achieved what I sought to do thanks to your help.

    One issue that I have found, however, is that it seems as though only 3 files are being saved in the database. Currently we are showing 5 upload fields. Is this a limitation on CFDB’s front, or possibly just CF7’s? Possibly my own settings?

    Here is an excerpt of my code:

    [cfdb-html form=”Contact form 1″ filelinks=”url”]
    <img src=”${file1}” width=”50″ height=”50″>
    <img src=”${file2}” width=”50″ height=”50″>
    <img src=”${file3}” width=”50″ height=”50″>
    <img src=”${file4}” width=”50″ height=”50″>
    <img src=”${file5}” width=”50″ height=”50″>
    [/cfdb-html]

    The form itself also has 5 upload options, all associated to file1-5.

    Thank you so much!

    Plugin Author Michael Simpson

    (@msimpson)

    I would expect this to work OK assuming that for each entry, the user actually did upload 5 files and didn’t leave any of the form’s upload fields blank.

    – View the form in the admin page and see if uploaded files exist for all submissions.
    – Be sure that the field names like ${file5} are correct

    Thread Starter Tekkaman

    (@tekkaman)

    Thank you. It turned out to be an ID/Naming issue on my part.

    I will mark this as resolved.

    Thread Starter Tekkaman

    (@tekkaman)

    RESOLVED!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Controlling IMG Dimensions W/ [CFDB-HTML]’ is closed to new replies.