Module "GET CONNECTED!"

Professional Joomla social template with metro design and JomSocial extension support.
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Wed Apr 23, 2014 1:02 pm
Reply with quote
Report this post
Hi.
I apologize for not being a smart question.
But where and how can I change this module?
I want to change the label and image.
Something not found ... (
User avatar
Fresh Boarder

teitbite
Wed Apr 23, 2014 1:51 pm
Reply with quote
Report this post
Hi

This is not a stupid question. That's not a module but part of Jomsocial Frontpage. For label you need to look in /languages folder in joomla root. Probably one of the files with JomSocial in name.

About the image. You can add this code to css with hanged path:

Code: Select all
#community-wrap .cGuest {
    background: url("/joomla25/msocial/templates/gk_msocial/images/guest-bg.jpg") no-repeat scroll 0 0 / cover rgba(0, 0, 0, 0);
}


or simply replace the image located in /joomla25/msocial/templates/gk_msocial/images/guest-bg.jpg with a new one.
User avatar
Moderator

GK User
Wed Apr 23, 2014 2:11 pm
Reply with quote
Report this post
Replaced its image but nothing has changed
User avatar
Fresh Boarder

GK User
Wed Apr 23, 2014 8:02 pm
Reply with quote
Report this post
Preview izmenilos.otlichno. Thank you.
But now change the text?
User avatar
Fresh Boarder

GK User
Wed Apr 23, 2014 8:07 pm
Reply with quote
Report this post
Ivanbuldakov wrote:Preview izmenilos.otlichno. Thank you.
But now change the text?



I was about to ask the same question how to change the text!

Two "Great" minds think a like!

Thanks
User avatar
Junior Boarder

GK User
Thu Apr 24, 2014 12:26 pm
Reply with quote
Report this post
Bump! (hope i don't get told off for bumping)
User avatar
Junior Boarder

GK User
Thu Apr 24, 2014 9:25 pm
Reply with quote
Report this post
Help Please.... :cry:
User avatar
Fresh Boarder

GK User
Fri Apr 25, 2014 10:38 am
Reply with quote
Report this post
Ivanbuldakov wrote:Help Please.... :cry:


Code: Select all
/language/en-GB


find

en-GB.com_community.ini


search for one of the this is from frontpage.guest.php in the ini file and change the text

Code: Select all
<div class="cGuest">
          <h1><?php echo JText::_('COM_COMMUNITY_GET_CONNECTED_TITLE'); ?></h1>
          <p><?php echo JText::_('COM_COMMUNITY_HERO_PARAGRAPH'); ?></p>
         
          <a href="jomsocial/register/register"> <?php echo JText::_('COM_COMMUNITY_JOIN_US_NOW'); ?> </a>
User avatar
Junior Boarder

GK User
Fri Apr 25, 2014 10:49 am
Reply with quote
Report this post
Thank You, I do not understand
In this file [en-GB.com_community.ini] is not found, what is the change file

I need to change frontpage.guest.php]?
And where to find it?
User avatar
Fresh Boarder

GK User
Fri Apr 25, 2014 11:21 am
Reply with quote
Report this post
Ivanbuldakov wrote:Thank You, I do not understand
In this file [en-GB.com_community.ini] is not found, what is the change file

I need to change frontpage.guest.php]?
And where to find it?


frontpage.guest.php is

/public_html/templates/gk_msocial/html/com_community

where you can change the url or what text files are displayed and how

en-GB.com_community.ini is

/public_html/language/en-GB

where you can find the text files to change for example mine on line 2640

COM_COMMUNITY_HERO_PARAGRAPH="Come and join our community. Expand your network and get to know new people!"

which is mentioned in frontpage.guest.php

Code: Select all
<div class="cGuest">
          <h1><?php echo JText::_('COM_COMMUNITY_GET_CONNECTED_TITLE'); ?></h1>
          <p><?php echo JText::_('COM_COMMUNITY_HERO_PARAGRAPH'); ?></p>
         
          <a href="#"> <?php echo JText::_('COM_COMMUNITY_JOIN_US_NOW'); ?> </a>
         
</div>
User avatar
Junior Boarder

GK User
Fri Apr 25, 2014 11:27 am
Reply with quote
Report this post
if you want to change it even more then

/public_html/templates/gk_msocial/css

Code: Select all
#community-wrap .cGuest h1 {
   color: #fff;
   font-size: 48px;
   font-weight: 400;
   line-height: 1;
   margin: 72px 0 0;
   padding: 20px 0;
   text-transform: uppercase;
   text-shadow: none;
   -moz-text-shadow: none;
   -webkit-text-shadow: none;
   -o-text-shadow: none;
User avatar
Junior Boarder

GK User
Fri Apr 25, 2014 11:42 am
Reply with quote
Report this post
oh it might not be "en-GB.com_community.ini"
it will be whateverlaungageyourusing.com_community.ini
User avatar
Junior Boarder

GK User
Fri Apr 25, 2014 1:54 pm
Reply with quote
Report this post
everything. I understood. all done - it works.
last question, how to change the link in the box :oops:
User avatar
Fresh Boarder

teitbite
Fri Apr 25, 2014 9:47 pm
Reply with quote
Report this post
Hi

Please do not bump Your own thread it does the oposit of speeding up answer :) every bump changes the time of question in moderator tool and moves it to the end of the line.

To change link please edit /html/com_community/frontpage.guests.php and in line 17 You will find a link:

Code: Select all
          <a href="<?php echo CRoute::_( 'index.php?option=com_community&view=register' , false ); ?>"> <?php echo JText::_('COM_COMMUNITY_JOIN_US_NOW'); ?> </a>
User avatar
Moderator

GK User
Fri Apr 25, 2014 11:38 pm
Reply with quote
Report this post
Understand where to change, and that change - no.
I'm an idiot. do not blame me.

Everywhere added url but nothing has changed :mrgreen:
Poke a finger at which line to change, that is.
User avatar
Fresh Boarder

GK User
Sat Apr 26, 2014 12:21 am
Reply with quote
Report this post
Understood.
Sorry for my stupidity.

I could not find, because I was looking in the components / com_community / templates / default - there really is no url

my carelessness. Thank you.
User avatar
Fresh Boarder

teitbite
Sat Apr 26, 2014 11:26 am
Reply with quote
Report this post
Hi

Do not worry. I've made even worst mistakes :)

Yes this time it's in override. But that's good, becuase component update will not remove it.
User avatar
Moderator


cron