• Resolved OyunLog

    (@oyunlog)


    Hi,

    First of all thank you for this theme. πŸ™‚

    I have seen problems one by one will try to write.

    BuddyPress
    – BP pages (groups, members) titles does not appear.

    <div class="page-title pad group">
    
    </div>

    bbPress
    – bbPress forums and topics title does not appear. And showing comment icon.

    <div class="page-title pad group">
    
    			<ul class="meta-single group">
    			<li class="category"></li>
    			<li class="comments"><a href="#comments"><i class="fa fa-comments-o"></i>0</a></li>
    		</ul>
    
    </div>

    – Some forums showing large image.

    <div class="page-image">
    	<div class="image-container">
    		<img width="720" height="340" src="/do-logo-720x340.png" class="attachment-thumb-large wp-post-image" alt="do-logo">		<div class="page-image-text"></div>	</div>
    </div>

    Translate
    – AlxTabs > Recent Comments widget “SAYS” no word in the language file.

    Other
    – Trackbacks & Pingbacks I did not remove the option.

    I’ve shared to help. Hopefully useful to you. Thank you again. If you like again I would share.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter OyunLog

    (@oyunlog)

    My fixes..

    BuddyPress
    – BP pages (groups, members) titles does not appear.

    Fix..
    inc/page-title.php
    add top endif

    <?php else: //buddypress ve bbpress ?>
    	<h2><?php the_title(); ?></h2>
    	<?php endif; ?>

    bbPress
    – bbPress forums and topics title does not appear. And showing comment icon.

    Fix..
    inc/page-title.php
    change elseif ( is_single() ):
    <?php elseif ( is_single() && !is_bbpress() ): //bbpress title and icon ?>

    Thanks for the great report here! Will sort this out in the next update. Good stuff πŸ™‚

    Page image thing should be fixed by replacing this:

    <?php if ( has_post_thumbnail() ): ?>

    With this:

    <?php if ( has_post_thumbnail() && !is_bbpress() ): ?>

    In /inc/page-image.php

    Fixes added to 1.3.2 and submitted. Marking as resolved.

    Other
    – Trackbacks & Pingbacks I did not remove the option.

    Can you clarify this?

    Thread Starter OyunLog

    (@oyunlog)

    Can you clarify this?

    I do not want users to see this feature. πŸ™‚ Is getting very irrelevant. Thanks for other fix. Its work. πŸ™‚

    Ah, I understand. Will see what I can do about that.

    Had to remove the fix that I added for is_bbpress by the way in the official version, need to think of another way as it bugs out if bbpress is not installed.

    Thread Starter OyunLog

    (@oyunlog)

    Maybe this way work..

    <?php if(function_exists(is_bbpress)) { $bbpress = "on"; }
    if($bbpress) {
    if ( has_post_thumbnail() && !is_bbpress() ){ echo "maybe this way? :)"; }
    }else {...}
    ?>

    Here’s a check for the existence of bbpress.. This needs to run before the ‘elseif (is_single())’, so drop that down lower in list of elseif’s.

    <?php elseif ( class_exists('bbPress')  ): ?>
    		<?php if (bbp_is_single_forum()) : ?>
    			<h1><i class="fa fa-weixin"></i><?php _e('Topics in:','hueman'); ?> <span><?php echo get_the_title(); ?></span></h1>
    		<?php elseif (bbp_is_single_topic()) : ?>
    			<h1><i class="fa fa-weixin"></i><?php _e('Topic:','hueman'); ?> <span><?php echo get_the_title(); ?></span></h1>
    		<?php elseif (bbp_is_forum_archive()) : ?>
    			<h1><i class="fa fa-weixin"></i><?php _e('Discussion','hueman'); ?> <span>Forums</span></h1>
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘BuddyPress & bbPress & Translate Problems :)’ is closed to new replies.