Move Block

Permalink
I'm a 5-day Conc5 veteran...hung up on getting a block to move.
When I select a block and click "Move" the crossed arrows appear and the block is unselected. Moving the crossed arrows around does not seem to move the block.

Would appreciate an explanation of how a block is moved.

 
Mnkras replied on at Permalink Reply
Mnkras
are you clicking and dragging?
mainejack replied on at Permalink Best Answer Reply
Hello Minkras

I'm sure something is missing here but this is what I have been doing.
1. Click Add to Main
2. New block appears
3. Click move
4. Try to drag it around
5. Block does not follow (like it showed in one of the videos)
6. Click "Save Positioning" at top of page.
7. Block stays where it was.

Is it because I was on the home page that this procedure didn't work"?
Mnkras replied on at Permalink Reply
Mnkras
What browser?
On Jul 1, 2011 2:57 PM, "Concrete5 Community" <discussions@concretecms.com>
wrote:
mainejack replied on at Permalink Reply
Windows Internet Explorer Version 9.0.8112.16421 comes up when I press ALT > H > A
Mnkras replied on at Permalink Reply
Mnkras
yea as jordan said, its currently broken in IE9
mainejack replied on at Permalink Reply
Thanks Mnkras and jordanlev. You both were on target...It was, indeed, a problem with the IE9 browser.

Turned on Chrome and blocks move around fine.

Mainejack
jordanlev replied on at Permalink Reply
jordanlev
There's a known bug with IE9, I'm guessing that's what you're using. Until the next version of C5 is released, the only workaround is to use a different browser (firefox, chrome, etc.) when editing sites :(
mainejack replied on at Permalink Reply
Thanks Mnkras and jordanlev. You both were on target...It was, indeed, a problem with the IE9 browser.

Turned on Chrome and blocks move around fine.

Mainejack
jordanlev replied on at Permalink Reply
jordanlev
If you need to fix this before the next version of C5 is released, I found a "hotfix" you can add to your theme's header to address this problem:

http://forum.jquery.com/topic/jquery-ui-sortable-and-draggable-do-n...
mainejack replied on at Permalink Reply
Thanks Jordan for the update.

Could you give me a little coaching on how I go about adding the hotfix to my theme's header?

Jack
jordanlev replied on at Permalink Reply
jordanlev
I'd be glad to. What theme are you using?
Do you know where the theme files are located on your server?
Do you know what I mean when I say "header file"?

(It's okay if you don't know the answers -- I just need to know where you're at so I can explain everything properly).
jordanlev replied on at Permalink Reply
jordanlev
BTW, I answered this question with a few more details here:
http://www.concrete5.org/index.php?cID=183761...
mainejack replied on at Permalink Reply
Hello Jordan,

Guess I don't know where Theme Files or the Header are located so I'll have to start from scratch.

Jack
jordanlev replied on at Permalink Reply
jordanlev
Not a problem -- please tell me which theme you're using and I can tell you exactly where the files are that you need to modify.
(I need to know which theme you're using because each one is built differently and may have different files in different places).
mainejack replied on at Permalink Reply
Hello Jordan

I am presently using Plain Yogurt...the default theme.

Jack
jordanlev replied on at Permalink Reply
jordanlev
Okay, edit this file:
YOURSITE/concrete/themes/default/elements/header.php

...and just below this line:
<?php  Loader::element('header_required'); ?>

...add this:
<script>// HOTFIX: We can't upgrade to jQuery UI 1.8.6 (yet)
// This hotfix makes older versions of jQuery UI drag-and-drop work in IE9
(function($){var a=$.ui.mouse.prototype._mouseMove;$.ui.mouse.prototype._mouseMove=function(b){if($.browser.msie&&document.documentMode>=9){b.button=1};a.apply(this,[b]);}}(jQuery));</script>