limit on number of posts

classic Classic list List threaded Threaded
27 messages Options
12
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Harvey

I forgot to. I will.

(via mobile)

On Dec 11, 2013 5:52 PM, "Pedro &lt;Nabble&gt; [via Nabble Support]" <[hidden email]> wrote:
Have you added this user at "posts" group?
My test forum.



If you reply to this email, your message will be added to the discussion below:
http://support.nabble.com/limit-on-number-of-posts-tp7588514p7588661.html
To unsubscribe from limit on number of posts, click here.
NAML
HTTPS Please!
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Harvey
OK it looks like it works!

It's a small thing but could we also remove the divided between reply and more:



HTTPS Please!
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Harvey

Just want to remove the divider when reply is not there.

(via mobile)

On Dec 11, 2013 6:13 PM, "Harvey [via Nabble Support]" <[hidden email]> wrote:
OK it looks like it works!

It's a small thing but could we also remove the divided between reply and more:






If you reply to this email, your message will be added to the discussion below:
http://support.nabble.com/limit-on-number-of-posts-tp7588514p7588663.html
To unsubscribe from limit on number of posts, click here.
NAML
HTTPS Please!
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Pedro
Add, or merge with previous overrides, this:
<override_macro name="classic_row_with_big_avatar" requires="node, node_list">
    <div class="classic-row">
        <div class="classic-header">
            <div class="classic-bar shaded-bg-color rounded-top">
                <div class="classic-author-name nowrap">
                    <n.owner.user_link/>
                </div>
                <div class="classic-right-menu shaded-bg-color weak-color">
                    <n.reply_link/><span class="reply_link"> |</span>
                    <n.threaded_link/> |
                    <n.post_dropdown/>
                    &nbsp;
                    <n.report_flag/>
                    <n.clickable_star/>
                </div>
                <div class="classic-subject-line">
                    <n.red_arrow_icon/>
                    <n.classic_post_date/>
                    <n.classic_subject_line/>
                </div>
            </div>
        </div>
        <table class="classic-body">
            <tr>
                <td class="classic-author shaded-bg-color rounded-bottom">
                    <n.classic_big_avatar_cell/>
                </td>
                <td class="classic-message">
                    <n.classic_message_cell/>
                </td>
            </tr>
        </table>
    </div>
</override_macro>
My test forum.
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Harvey
Not sure I understand.

Can I take the code above and replace the entire override?

This is what is there now:

<override_macro name="classic_row_with_big_avatar" requires="node, node_list">
  <div class="classic-row">
    <div class="classic-header">
      <div class="classic-bar shaded-bg-color rounded-top">
        <div class="classic-author-name nowrap">
          <n.owner.user_link/>
        </div>
        <div class="classic-right-menu shaded-bg-color weak-color">
            <n.if.not.page_node.is_locked_topic> 
                <then>
                    <n.reply_link/> | 
                </then>
            </n.if.not.page_node.is_locked_topic> 
          <n.post_dropdown/>
          &nbsp;
          <n.report_flag/>
          <n.clickable_star/>
        </div>
        <div class="classic-subject-line">
          <n.red_arrow_icon/>
          <n.classic_post_date/>
          <n.classic_subject_line/>
        </div>
      </div>
    </div>
    <table class="classic-body">
      <tr>
        <td class="classic-author shaded-bg-color rounded-bottom">
          <n.classic_big_avatar_cell/>
        </td>
        <td class="classic-message">
          <n.classic_message_cell/>
        </td>
      </tr>
    </table>
  </div>
</override_macro>
HTTPS Please!
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Pedro
See that, in your forum, you have already override this macro. You already had done some tweaks in the past. So that, you have to merge the codes.
In this case, just replace this line on your code:
<n.reply_link/> | 
with this one:
<n.reply_link/><span class="reply_link"> |</span>
My test forum.
Reply | Threaded
Open this post in threaded view
|

Re: limit on number of posts

Harvey
Pedro <Nabble> wrote
See that, in your forum, you have already override this macro. You already had done some tweaks in the past. So that, you have to merge the codes.
In this case, just replace this line on your code:
<n.reply_link/> | 
with this one:
<n.reply_link/><span class="reply_link"> |</span>
Thanks. NAML took the change without an error.

Because of my login problems I cant test to see if it is performing as expected.  (I can't get my test user to see the private area even after giving access).  If it works later I will test it.
HTTPS Please!
12