When a user visits a page in which a subscription is needed, it pulls up an alert window, which i have attached below.
It reads:
success
Access to this content is not allowed...
I have looked in the language file and found where to change "Access to this content..". However, the "success" is not listed there. How do i change the "success" text?
Joomla just recently (3.x only I believe) started adding the message type as part of the message. It used to just be the CSS class for the message. It's surrounded by JText call so you should be able to translate it within your Joomla language files. Example as follows.
SUCCESS="OK"
Alternatively it has a CSS class so you could add the following to your Joomla template CSS file to hide it using CSS.
Code:
#system-message .alert-heading {
display: none;
}
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.