1. mindoxy
  2. Support
  3. Tuesday, April 12 2016, 05:50 PM
Hi Team,

I created a menu that links to user registration form on my site http://kingsandqueens.cc/index.php/add-profile-2

When users click on the link it takes them to the registration page but i want to include the social network login on this pages.

Please how do i achieve this.

Thanks
admin Accepted Answer
Admin
Hi,
you can use a simple HTML custom module and put our shortcode, see our docs in section "Social Connect Buttons Everywhere" at http://docs.easy-profile.com/index.php/article/social-connect-intro
  1. more than a month ago
  2. Support
  3. # 1
mindoxy Accepted Answer
Thanks for the reply..

I created a custom module but it wont display on the register page, i thinks modules dont generally display on register page..
Please what do i do
  1. more than a month ago
  2. Support
  3. # 2
admin Accepted Answer
Admin
please post me your site details to check this.
  1. more than a month ago
  2. Support
  3. # 3
mindoxy Accepted Answer
Kindly find the details..

THanks
  1. more than a month ago
  2. Support
  3. # 4
admin Accepted Answer
Admin
Hi,
this is a template problem, in file templates/theme3050/includes/includes.php after line 45 you have:
$hideByView = false;
switch($view){
case 'article':
case 'login':
case 'search':
case 'profile':
case 'registration':
case 'reset':
case 'remind':
case 'form':
$hideByView = true;
break;
}

//By Component
$hideByOption = false;
switch($option){
case 'com_users':
case 'com_search':
$hideByOption = true;
break;
}

//By Component
$hideByEdit = false;
if($option == 'com_content' && $layout == 'edit'){
$hideByEdit = true;
}

Your template disable all modules in article,login,registration,edit profile,search.... pages. I don't know why, this is not a feature, this is a un-feature :D

Joomla have many options to manage modules and pages. So, this code is very unless, it remove Joomla features.
  1. more than a month ago
  2. Support
  3. # 5
mindoxy Accepted Answer
I believe i can just remove it... So i can achieve the task
  1. more than a month ago
  2. Support
  3. # 6
admin Accepted Answer
Admin
Hi,
you can add a simple line instead remove all code. after previous code try to add this:
$hideByOption = false;


With a minimum change you solve can it.
  1. more than a month ago
  2. Support
  3. # 7
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.