Hi,
My page for the moment is this : http://themuslimclub.com/index.php
And I want this : (see attachment).
How can I add what is in the Universal login in the "Login" box.
Thanks;
/unity/forums/?action=goto&my_threads#topic/Video-is-being-processed-for-the-second-time.htm |
Have you tried to add it to the language key
Settings/Languages Settings and search after this text string: _login_form_description2join
1) Delet text you have here and add your own code. (have you more than one language edit text there also) 2) Select all language and Compile it 3) Remember to clear cache also
|
It dont work, beceause they have write nothing on "Universal Login" block. /unity/forums/?action=goto&my_threads#topic/Video-is-being-processed-for-the-second-time.htm |
You will find the code in your database
sys_page_compose and look after
Caption: _Universal Login or Universal Login
code will be in the Content area
it's a mod, and it's depend how the code is made and about how easy it's to move the code or not
|
Hi okweb,
Thanks for answer.
I have find the caption (rpx_universel) :
return BxDolService::call('rpx', 'get_login_form');
/unity/forums/?action=goto&my_threads#topic/Video-is-being-processed-for-the-second-time.htm |
Can't add service call to a language key, you need the html code.
You can try this, but I can't guarantee that it will work, you have to test it out.
1) Loginbox on hompage (and the ajax popup login form)
Table sys_localization_strings IDKey 1483 (Dol.7.0.4, can be another ID depend on the Dol. vers. you use)
(You shall have this inside the String area: <div class="usualHeader">Not a member yet? <a href="{0}join.php">Join now!</a></div>Join our community now to meet new people; share photos, videos and music; create your own blog; post ads; chat online and more!)
Add code bellow to the String area.
<br><br> <script type="text/javascript"> RPXNOW.overlay = true; RPXNOW.language_preference = 'de'; </script> <center> <a class="rpxnow" onclick="return false;" href="https://themuslimclub.rpxnow.com/.rpxnow.com/openid/v2/signin?token_url=http://themuslimclub.com/m/rpx/AuthorizeMember"><img src="http://themuslimclub.com/modules/boonex/rpx/templates/base/images/login.png" alt="providers"></a> </center>
So all code here will be:
<div class="usualHeader">Not a member yet? <a href="{0}join.php">Join now!</a></div>Join our community now to meet new people; share photos, videos and music; create your own blog; post ads; chat online and more! <br><br> <script type="text/javascript"> RPXNOW.overlay = true; RPXNOW.language_preference = 'de'; </script> <center> <a class="rpxnow" onclick="return false;" href="https://themuslimclub.rpxnow.com/.rpxnow.com/openid/v2/signin?token_url=http://themuslimclub.com/m/rpx/AuthorizeMember"><img src="http://themuslimclub.com/modules/boonex/rpx/templates/base/images/login.png" alt="providers"></a> </center>
2) After you have added code to DB you need to do this
a) Builders/Pages Blocks -> Hompage Move Login block a bit and drop it, then move it back again.
b) Settings/Languages Settings -> Compile all language
c) Clear all Cache
3) Move your Universal Login block from Active Blocks to Inactive Blocks
4) Test it out...
|
Hi,
Thanks for your help.
On IDKey 1483, I dont have your code, but this : (See attachments).
Thanks
/unity/forums/?action=goto&my_threads#topic/Video-is-being-processed-for-the-second-time.htm |
Hi,
Thanks for your help.
On IDKey 1483, I dont have your code, but this : (See attachments).
Thanks
ok, go to table sys_localization_keys and search after _login_form_description2join ID here is what you need.
Then go to table sys_localization_strings and Search after this ID.
(You shall have this inside the String area: <div class="usualHeader">Not a member yet? <a href="{0}join.php">Join now!</a></div>Join our community now to meet new people; share photos, videos and music; create your own blog; post ads; chat online and more!)
Continue with my earlier post...
Add code bellow to the String area.
etc.
|
Haa thank you okweb, it working :)) /unity/forums/?action=goto&my_threads#topic/Video-is-being-processed-for-the-second-time.htm |
I just noticed something.
There is the image in the login block now, but the link does not work.But that same link works when I add the old block "Universal Login".
Do you know what I mean?
/unity/forums/?action=goto&my_threads#topic/Video-is-being-processed-for-the-second-time.htm |