How to change the location of a module position


Author Message
mightec

Posted: 7/28/2012
Quote message 

Hi
I am sorry if this has been asked and answered elsewhere on the forum.

I want to be able to change the location of various module positions within Artisteer 3.1. I want to have the means to stack the modules, one below the other, instead of having them located across the webpage.

If we assume that I want to have position24 moved below position 23 and for both to run fully across the webpage.

How do I do this, can someone help, this would be great.
 
mightec

Posted: 7/29/2012
Quote message 

RESOLVED
I have been able to sort out the way to do it, not that hard, just logical.
 
JMNSAntos

Posted: 7/29/2012
Quote message 

Quote mightec:

RESOLVED
I have been able to sort out the way to do it, not that hard, just logical.

and can you tell us how to make that?
thanks :-)
 
mightec

Posted: 8/1/2012
Quote message 

Hi
Sorry for the delay in responding, if we take the example is posed in my question, 'I want to have position24 moved below position 23 and for both to run fully across the webpage.'

If you open the index.php file in a text editor, I think that line 63 looks like that below:

echo $view->positions(array('position-20' => 50, 'position-21' => 50), 'art-article');

I simply, copied the line and created two line and made a couple of changes, now I am not a programmer so it may not be totally correct, but it worked for me. This is how it finished up:

echo $view->position('position-22', 'art-nostyle');
echo $view->position('position-23', 'art-article');

 
mightec

Posted: 8/1/2012
Quote message 

Sorry I made a bit of a mess of the answer, this is how position-23 and position-24 line looks on line 69.


echo $view->positions(array('position-23' => 50, 'position-24' => 50), 'art-article');

I chnaged it to this:

echo $view->position('position-23', 'art-nostyle');
echo $view->position('position-24', 'art-article');

 
mightec

Posted: 8/1/2012
Quote message 

I will get it right in a minute.


echo $view->position('position-23', 'art-nostyle');
echo $view->position('position-24', 'art-nostyle');
 
mightec

Posted: 8/1/2012
Quote message 

I give up, it should be as follows:

echo $view->position('position-23', 'art-article');
echo $view->position('position-24', 'art-article');
 
Ian Shere

Posted: 8/8/2012
Quote message 

LOL @mightec!!!! Too much wine, too little sleep? Or just a "senior moment"???!!! :-D

Thanks for the explanation. I've never needed to do it, and sure I could have figured it out, BUT.... nice to be able to refer to here when I need it and not strain my own brain!