• I’m finding this plugin really useful, such a great tool. But I’m also having to do a lot of fiddling with the template to get it to better integrate visually with my theme. What I’d like to see built in:

    – crop image rather than just resize (to avoid ugly stretching)
    – more flexibility with layout, such as ability to stack content vertically, including the image, rather than force the image to left/right

    I also had the featured image problem others have had, and commented out the offending line of code (which worked like a charm). So fixing that problem would also be on the list.

    I’m working on a hack to make all this work, but it’d be nice to have it available out of the box.

    https://www.ads-software.com/plugins/site-creator-ultimate/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter savia

    (@savia)

    Just thought I’d share the hacks as I got them so others looking here will find it.

    To include the option to display your image at the top instead of just on left or right, go to lib.php, find the function definition for scu_s_area0, and add the line ‘1’ => ‘TOP’, as indicated below:

    //PLACEMENT OPTIONS ---
    function scu_s_area0() {
        $sel = array(
            '0' => 'HIDE',
            '1' => 'TOP',
            '2' => 'LEFT',
            '3' => 'RIGHT'
        );
        scu_sel('area0', '', '', $sel);
        scu_selpos('pos0');
    }

    This will include the option to place the image at the top of the item display in the drop menu in the admin screen.

    Thread Starter savia

    (@savia)

    Another very useful feature would be to link the tags that are displayed, to match standard WP functionality.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘feature requests’ is closed to new replies.