Notifications
Clear all

wpForo 1.x.x [Solved] Which php file handles the wpf-head-bar area?

5 Posts
2 Users
1 Likes
912 Views
Posts: 12
Topic starter
(@arvedg)
Eminent Member
Joined: 4 years ago

Hi,

I can't really believe that I have to ask this (shame), but in which php file is the w*f-head-bar part handled? I am trying to move the search icon and the breadcrumbs lower (see attachment). 

The header.php, where the code is now, seems to end before the wp-head-bar area.

The forum.php seems to start after the "Subscribe for new topics" line. 

Where is the in between handled? In a separate file? 

Website: https://ideasforgozo.com/community/hub/

Sorry for the seemingly simple question....

Best, Arved

4 Replies
Tutrix
Posts: 1267
(@tutrix)
Noble Member
Joined: 4 years ago

@arvedg

try this CSS Code

#wpforo #wpforo-wrap .wpforo-subtop, #wpforo #wpforo-wrap .wpf-search .wpf-search-form {
position: relative;
top: 200px;
}

Dashboard > Forums > Settings > Style Tab > Custom CSS Code

 

3 Replies
(@arvedg)
Joined: 4 years ago

Eminent Member
Posts: 12

@tutrix 

Hi Tutrix, thank you for the fast idea! In general this works, but it seems to be not a responsive. When moving it with an amount px or em the breadcrumbs and search start floating into the forum etc on the mobile and other devices. Otherwise, I have to admit, it was a very beautiful solution 🙂

That's why I had thought to hard code it to the "right" place. Or can it be placed there somehow relative with css to also work responsive?

Tutrix
(@tutrix)
Joined: 4 years ago

Noble Member
Posts: 1267

@arvedg

"wpf-head-bar" begins at line 27 (wpf-themes > classic > forum.php)

 

<div class="wpf-head-bar">
<div class="wpf-head-bar-left">
<h1 id="wpforo-title"><?php echo esc_html($forum['title']) ?></h1>
<?php if( $forum['description'] ): ?>
<div id="wpforo-description"><?php echo $forum['description'] ?></div>
<?php endif; ?>
<div class="wpf-action-link">
<?php WPF()->tpl->forum_subscribe_link() ?>
<?php if( wpforo_feature('rss-feed') ): ?>
<span class="wpf-feed">|
<a href="<?php wpforo_feed_rss2_url() ?>" title="<?php wpforo_phrase('Forum RSS Feed') ?>" target="_blank">
<span style="text-transform: uppercase;">
<?php wpforo_phrase('RSS') ?>
</span>
<i class="fas fa-rss wpfsx"></i>
</a>
</span>
<?php endif; ?>
</div>
</div>
<div class="wpf-clear"></div>
</div>
(@arvedg)
Joined: 4 years ago

Eminent Member
Posts: 12

@tutrix   Thousand Thanks!!