test
Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • john777 Friend
    #161297

    Can you guys atleast tell me if it is possible to create a new module in a desired position and size? for JA social temp?
    If so, then how? I have been patiently waiting for someone to reply on this? please don’t send me a link to wiki document, I will appreciate if someone point me in a right direction and give me steps precisely for the question I have been asking from weeks. I don’t have time to study and understand the complete framework at this point of time, because I have many other things to take care of, and I fail to focus my concentrate on this subject, Please understand my pleas and provide me a solution, I have been paying 100$ a month for my webhosting (cloud). All I need is finish my site, thats all.

    Kindly someone out there, please help.

    http://www.joomlart.com/forums/topic/new-module-position-12/

    please pardon me, Its just I am in a rush,

    Sherlock Friend
    #380871

    <em>@john777 226921 wrote:</em><blockquote>Can you guys atleast tell me if it is possible to create a new module in a desired position and size? for JA social temp?
    If so, then how? I have been patiently waiting for someone to reply on this? please don’t send me a link to wiki document, I will appreciate if someone point me in a right direction and give me steps precisely for the question I have been asking from weeks. I don’t have time to study and understand the complete framework at this point of time, because I have many other things to take care of, and I fail to focus my concentrate on this subject, Please understand my pleas and provide me a solution, I have been paying 100$ a month for my webhosting (cloud). All I need is finish my site, thats all.

    Kindly someone out there, please help.

    http://www.joomlart.com/forums/topic/new-module-position-12/#post-379233

    please pardon me, Its just I am in a rush,</blockquote>

    Dear John,

    Can you explain me more details the difficult you are facing,You could not assign your modules to module positions or anything else ?
    You can post here an example in which you could not do so i will point you in a right direction.

    john777 Friend
    #381643

    <em>@dathq 227050 wrote:</em><blockquote>Dear John,

    Can you explain me more details the difficult you are facing,You could not assign your modules to module positions or anything else ?
    You can post here an example in which you could not do so i will point you in a right direction.</blockquote>

    please check the screenshot

    john777 Friend
    #381645

    <em>@john777 228052 wrote:</em><blockquote>please check the screenshot</blockquote>

    please check the screenshot and give me specific instructions for ja social, please make it as simple as possible.

    need to create a module, what to do?

    thanks


    1. module-positions-needed
    Sherlock Friend
    #381769

    <em>@john777 228054 wrote:</em><blockquote>please check the screenshot and give me specific instructions for ja social, please make it as simple as possible.

    need to create a module, what to do?

    thanks</blockquote>

    Dear john777,

    in that place you already have the user1,user2 and user3 position so you just need to publish your modules on those module positions don’t need to create any now ones.

    john777 Friend
    #381927

    <em>@dathq 228218 wrote:</em><blockquote>Dear john777,

    in that place you already have the user1,user2 and user3 position so you just need to publish your modules on those module positions don’t need to create any now ones.</blockquote>

    Please understand that I am aware of those positions, But I don’t need them side by side, but instead in vertical positions.

    ALREADY exists in this format: user 1, user 2, user 3, ( if I want to use these positions, lets say 500 px width for each module then it obviously does not fit in the screen right?)

    What I need is :

    User 1,
    User 2,
    User 3,.

    That is why I asked you that I need to know how to create a module, so that I can create one even when I need a new module position, lets say USER 4 or USER X, right after USER 3 ( according to my above example reference right after user 3 (vertical position) of same width.

    I really wish, you understand my problem and issue, and give me a solution right here rather than posting a link. Its more than three weeks now.

    you have no Idea how much I appreciate such an answer.

    for JA social template

    Thanks,

    Sherlock Friend
    #381988

    Dear john777,

    You need to make a litle change in the code to get this,Please try as following
    1) Copy the file of pluginssystemjat3base-themesdefaultpagedefault.php and put it into the folder of templatesja_socialpage create the page folder if it is not there,open the copied file and looking for this snap of code
    [PHP] <?php
    //content-top
    if($this->hasBlock(‘content-top’)) :
    $block = &$this->getBlockXML (‘content-top’);
    ?>
    <div id=”ja-content-top” class=”ja-content-top clearfix”>
    <?php $this->showBlock ($block); ?>
    </div>
    <?php endif; ?>
    [/PHP]
    adding below it this block of code
    [PHP]
    <?php
    //scontent-top
    if($this->hasBlock(‘scontent-top’)) :
    $block = &$this->getBlockXML (‘scontent-top’);
    ?>
    <div id=”ja-scontent-top” class=”ja-scontent-top clearfix”>
    <?php $this->showBlock ($block); ?>
    </div>
    <?php endif; ?>
    [/PHP]

    Now you have a new block name scontent-top which contain your module positions

    2) Go to your template back-end >> Layout tab,going to edit your actived layout (it may default layout ),you would see a block xml tag like this
    <block name=”content-top” type=”spotlight”>user1,user2,user3</block>
    Just add under it a block tag as this
    <block name=”scontent-top” type=”modules “>user21,user22,user23</block>

    Completely,Now you have three module positions on the place you wanted (you can add many module positions as you wanted,for example user21,user22,user23,usre24 etc…) just assigning your modules to these positions then they would display on that place.

    I hope this make sense !

    john777 Friend
    #382097

    <em>@dathq 228494 wrote:</em><blockquote>Dear john777,

    You need to make a litle change in the code to get this,Please try as following
    1) Copy the file of pluginssystemjat3base-themesdefaultpagedefault.php and put it into the folder of templatesja_socialpage create the page folder if it is not there,open the copied file and looking for this snap of code
    [PHP] <?php
    //content-top
    if($this->hasBlock(‘content-top’)) :
    $block = &$this->getBlockXML (‘content-top’);
    ?>
    <div id=”ja-content-top” class=”ja-content-top clearfix”>
    <?php $this->showBlock ($block); ?>
    </div>
    <?php endif; ?>
    [/PHP]
    adding below it this block of code
    [PHP]
    <?php
    //scontent-top
    if($this->hasBlock(‘scontent-top’)) :
    $block = &$this->getBlockXML (‘scontent-top’);
    ?>
    <div id=”ja-scontent-top” class=”ja-scontent-top clearfix”>
    <?php $this->showBlock ($block); ?>
    </div>
    <?php endif; ?>
    [/PHP]

    Now you have a new block name scontent-top which contain your module positions

    2) Go to your template back-end >> Layout tab,going to edit your actived layout (it may default layout ),you would see a block xml tag like this
    <block name=”content-top” type=”spotlight”>user1,user2,user3</block>
    Just add under it a block tag as this
    <block name=”scontent-top” type=”modules “>user21,user22,user23</block>

    Completely,Now you have three module positions on the place you wanted (you can add many module positions as you wanted,for example user21,user22,user23,usre24 etc…) just assigning your modules to these positions then they would display on that place.

    I hope this make sense !</blockquote>

    Looks Like I am not fortunate., I followed everything just as you suggessted, but nope I do not see the module positions in my module manager to assign any modules.,

    additionally, i added the positions user21, 22, 23 in my xml, then I could see the positions, but when I assign to those positions, I could not see anything on my frontpage, can you get into my host server and fix it, I will send you all the necessary details,., or do you want me to send you screenshots, so that you will know what went wrong?

    I am glad you are trying to help me out, but it looks like something is not right., I appreciate all your efforts in trying to resolve the issue,

    Kindly help me ,

    thanks,

    Phill Moderator
    #382104

    Please PM me an admin logon to your joomla back end (including a link to your site) along with your ftp details. Please include a link to this thread in your PM.

    john777 Friend
    #382259

    all the details have been sent.

    Phill Moderator
    #382266

    To be honest I am quite confused by your setup. It seems to be in a bit of a mess. The link you give me goes to a site with the /blog at the back but the details you supply are not the admin for that. If I go to /blog/administrator your site will not let me in.

    If I go to your domain/administrator I end up at what appears to be a different Joomla install and one that needs tidying up somewhat.

    I have never seen an install where a user has 138 templates installed, 281 plugins installed, 260 modules installed and a list of components that scrolls over 3 pages. This is really making it hard for me to determine exactly which install I am working on. It is also using a huge amount of server resources and you should really take the time to strip down to what you are actually using.

    I looked in the template manager of the site I was able to logon to for you and the above modifications were not applied to the default layout but I am guessing I am logging onto the wrong site so plese confirm the correct link to your admin panel via PM so I can try and work out what is going on. It appears the sites are becoming a little confused.

    john777 Friend
    #382335

    Try admin URL :

    shahhah.org/administrator

    I still wonder why you have been redirected to http://www.shahhah.org/blog when you type in http://www.shahhah.org, I have noticed it once so I understand what you mean, usually it works fine for me, kindly use shahhah.org/administrator, use the same login details
    I cleaned up most of the templates.

    I am paying 100$ a month for a cloud hosting server at this point of time, I have a vision of making this website big, I still need to figure out which componants – modules – plugins – I should get rid of, Once I establish my front page properly, then I will start the clean up process. I don’t have time to test on local host.

    If I get support in time for the componants, templates I use, then it would not be necessary for me to try out other templates, componants, and make a mess out of it, Its waste of time and money. Only very few componants I use get a proper support in time, especially the sef componant which is supposed to provide sef urls is such a headache that I had to try new similar componants to check atleast they work. the support is a nightmare.

    the template you need to make changes were : jA_social2. Please help me as soon as possible.


    1. ja_social_backend
    Phill Moderator
    #382337

    I have edited the code for you. You now have positions user21, user22 and user 23.

    john777 Friend
    #382378

    thanks a ton for the help, I appreciate it from the bottom of my heart.,

    May I know what did I miss, so that I will able to create a module myself If i need in future., or let me know if i need to do anything in addition to what was suggested to me before., I appreciate it.

    Thanks a lot Phill,

    Thanks to everyone who responded to this thread and helped to resolve the issue.

    john777 Friend
    #383361

    I am still waiting for your response phill,

    thank you

Viewing 15 posts - 1 through 15 (of 16 total)

This topic contains 16 replies, has 3 voices, and was last updated by  Phill 13 years, 8 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum