Viewing 7 replies - 1 through 7 (of 7 total)
  • <tr>
    			<td>
                    #_{d/m/Y} #@_{ - d/m/Y}<br/>
                    #H:#i -#@H:#@i
                </td>
                <td>
    <div style="float:left; margin:0px 10px 0px 0px;">#_EVENTIMAGE{100,100}</div>
                    #_EVENTLINK<br/>
                    <i>#_LOCATIONNAME, #_LOCATIONTOWN #_LOCATIONSTATE</i>
                </td>
            </tr>

    I used this as the ‘Default event list format’ in settings > formats/templates

    Thread Starter giubilo

    (@giubilo)

    Thanks Marcus, but I still can’t see the thumbnail.
    I think that the problem is in the backend, when I insert a new event I haven’t the opportunity to upload an image; I can do that only in the description box.

    What am I doing wrong?

    that’d be one reason.

    maybe you have permission problems firstly in your folder, or maybe the events settings page user capabilities hasn’t selected the upload_Event_images capability?

    Thread Starter giubilo

    (@giubilo)

    Thanks Marcus, I have right permission in the folder and the capabilities are correctly septate but it doesn’t work. I think that the problem is the incompatibility with another one plugin, infact I have tried reintalling wordpress and the plugin and now it works great.
    Now I try to understand more, but my problem is solved! thanks
    Michele

    Thread Starter giubilo

    (@giubilo)

    I understand the problem, it’s not a plugin conflict but a theme problem. I have created a wordpress template and if I activate my theme I can only upload image from the standard article mode (In the right column I have the upload box) but not by the addition of a new event page with this plugin. (In the right column I havent the upload box)
    Instead if I insert a new article or event with standard frontend theme (Twenty Eleven) I can upload image in my backend. (In both cases in the right column I have the upload box)

    What should I write in my template to show the upload image box in the right column of the addition of a new event page?

    Thanks

    Try adding this to your functions.php file – http://codex.wordpress.org/Post_Thumbnails#Example_of_functions.php

    Thread Starter giubilo

    (@giubilo)

    Great! now it works!
    First I have in my functions.php template only:

    // add thumbnail support
    add_theme_support( 'post-thumbnails', array( 'post' ) ); // Add it for posts
    set_post_thumbnail_size( 200, 130, true ); // 50 pixels wide by 50 pixels tall, hard crop mode

    but replacing with this it works!

    if ( function_exists( 'add_theme_support' ) ) {
      add_theme_support( 'post-thumbnails' );
    }

    [Please post code or markup snippets between backticks or use the code button.]

    Thanks a lot.
    michele

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘[Plugin: Events Manager] events list with thumbnail’ is closed to new replies.