AJAX Register--article not appearing on frontend
- colhiogroup
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
9 years 3 months ago #7536
by colhiogroup
I've created a Terms of Service field, and the title appears on the frontend, but the article link is missing. I see others with this issue in the forum, but don't see a solution. Any suggestions? I'm using Joomla 3.4.3. Thanks!
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
9 years 3 months ago #7537
by Saka
Emir Sakic
www.sakic.net
Please send a mail with the URL of your registration page so I can have a look.
It works fine for us.
It works fine for us.
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.
- colhiogroup
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
9 years 2 months ago #7539
by colhiogroup
Sent you an email, thanks!
Please Log in or Create an account to join the conversation.
- randlieb
- Offline
- New Member
Less
More
- Thank you received: 0
8 years 10 months ago #7569
by randlieb
I just bought your latest version of Ajax Register and it is installed on Joomla 3.4.8. I have the same problem, link for terms is not showing on front end.
www.voteleft.us/index.php/create-an-account
Thanks for your help.
www.voteleft.us/index.php/create-an-account
Thanks for your help.
Please Log in or Create an account to join the conversation.
- thellie
- Offline
- New Member
Less
More
- Thank you received: 0
8 years 10 months ago #7572
by thellie
Same here - for any linked article. The issue seems to be with the 'link' type.
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
8 years 10 months ago #7574
by Saka
Emir Sakic
www.sakic.net
Hello,
You are using a template which includes Bootstrap v3.3.4 (Bootstrap included in Joomla 3 is v2.3.2).
This newer Bootstrap hides elements with CSS class "modal" by some reason, thus the link appears invisible.
To fix it you must override this in your custom CSS somewhere. Add this code:and it will be fixed.
You are using a template which includes Bootstrap v3.3.4 (Bootstrap included in Joomla 3 is v2.3.2).
This newer Bootstrap hides elements with CSS class "modal" by some reason, thus the link appears invisible.
To fix it you must override this in your custom CSS somewhere. Add this code:
.modal {
display: inline !important;
position: static !important;
}
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.