Hello,
The policy of access to the forum being based on membership duration has been the status quo since the beginning, and is written in our FAQ / Help pages. I can understand your frustration but it is moot as that is how our club works.
However, most questions that are asked can either be easily solved by reading the demo instructions, or are customisation questions which we do not commit to as a priority. For example, a question on how to move the Mynxx menu from its current location to within another area of the theme is obviously a customisation query, rather then a template support / bug concern. We will still help if it is proportionate to do so, but remember this is a free bonus of membership. We provide a lot of resources openly to all, but the template specific boards are not one of them.
Regarding your question, RokFeature doesn't have that functionality. As with almost all Joomla content modules in its class, it is designed to conform to the mechanics of Joomla content, that being Intro Text - Read More - More Text. The read mores are generated automatically by the module, as dictated by Joomla content. Manual controls would subvert the 'natural' order of Joomla content.
That said, it is possible, but I imagine would be more inconvenient to you. You have to remove the stripping code that removes almost all HTML code from the content item. If this was removed, you could manually insert the HTML for the Read More, you'd have to do this for each article though, as its not going to be automatic.
Therefore, remove (or comment out) the following from /modules/mod_rokfeature/helper.php
$text = preg_replace( "'<script[^>]*>.*?</script>'si", "", $text );
$text = preg_replace( '/{.+?}/', '', $text);
// replace line breaking tags with whitespace
$text = preg_replace( "'<(br[^/>]*?/|hr[^/>]*?/|/(div|h[1-6]|li|p|td))>'si", ' ', $text );
$text = strip_tags( $text );
And add to template.css
.rokfeature-readon2 {position: absolute;right: 15px;bottom: 15px;}
.rokfeature-readon2 a {padding: 3px 5px;text-transform: uppercase;color:#fff;background:#000;}
Then you can use the HTML for the Read More in your content:
<div class="rokfeature-readon2"><a href="#">Read More</a></div>
That should help, but do remember that custom development type questions can easily go beyond what we can and should provide.
Absolutely Kickass reply- Thank you, James!