Jump to content

Reply to this topic on mobile


Day_

Recommended Posts

Just now, daveoh said:

Shows when logged in as a admin, doesn't show when logged in as a member or guest. Guess it's a bug then?

Doubt much concern was given to it ;)

You CAN go to 'topic' template and change it:

{{if $topic->container()->forums_bitoptions['bw_enable_answers']}}
	<a href='#replyForm' class='ipsButton {{if $topic->locked()}}ipsButton_negative{{else}}ipsButton_important{{endif}} ipsButton_medium ipsButton_fullWidth' data-action='replyToTopic'>{lang="answer_this_question"}{{if $topic->locked()}} ({lang="locked"}){{endif}}</a>
{{else}}
	<a href='#replyForm' class='ipsButton {{if $topic->locked()}}ipsButton_negative{{else}}ipsButton_important{{endif}} ipsButton_medium ipsButton_fullWidth' data-action='replyToTopic'>{lang="reply_to_this_topic"}{{if $topic->locked()}} ({lang="locked"}){{endif}}</a>
{{endif}}

Find this little segment.. You want to edit in the 'ipsResponsive_hidePhone' CSS class onto both of the <a href...> elements, so the above bit should look like this:

{{if $topic->container()->forums_bitoptions['bw_enable_answers']}}
	<a href='#replyForm' class='ipsResponsive_hidePhone ipsButton {{if $topic->locked()}}ipsButton_negative{{else}}ipsButton_important{{endif}} ipsButton_medium ipsButton_fullWidth' data-action='replyToTopic'>{lang="answer_this_question"}{{if $topic->locked()}} ({lang="locked"}){{endif}}</a>
{{else}}
	<a href='#replyForm' class='ipsResponsive_hidePhone ipsButton {{if $topic->locked()}}ipsButton_negative{{else}}ipsButton_important{{endif}} ipsButton_medium ipsButton_fullWidth' data-action='replyToTopic'>{lang="reply_to_this_topic"}{{if $topic->locked()}} ({lang="locked"}){{endif}}</a>
{{endif}}

Pretty sure that should do it!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...