-
Author
-
October 28, 2016 at 07:16 #141822
mbfit
ParticipantHi, I would like to have a Rev Slider on my Forum page. I’ve been told to use shortcode however I am not sure where to put this so that it reflects on the Forums? And do I use this code?
<?php putRevSlider('full_width_with_form', '2,10'); ?>
Also as far as logos, how do I change the theme logo that is on the scroll down nav bar? The logo that is on the transparent bar that scrolls along with the other site links as you scroll down a page.
Thanks!
October 28, 2016 at 13:25 #141864Laura
ModeratorHello copy the file loop-forums.php at wp-content/themes/kleo/bbpress and paste it at the child theme inside bbpress folder (create it) then you can edit it and try to add the code
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 28, 2016 at 13:29 #141865Laura
ModeratorAbout the logo, that logo is the same logo at the header
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 29, 2016 at 00:11 #141978mbfit
ParticipantHi the logo worked thanks!
As far as pathing goes I don’t have a kleo folder under wp-content/themes. It did have a ‘forum’ folder under themes where I found the loop-forums.php so I created a bbpress folder under child theme copied that php into it and put in the above code at the bottom but it didn’t work:
<?php
/**
* BuddyPress – Forums Loop
*
* Querystring is set via AJAX in _inc/ajax.php – bp_dtheme_object_filter()
*
* @package BuddyPress
* @subpackage bp-default
*/?>
<?php do_action( ‘bp_before_forums_loop’ ); ?>
<?php if ( bp_has_forum_topics( bp_ajax_querystring( ‘forums’ ) ) ) : ?>
<?php bp_forum_pagination_count(); ?>
<?php bp_forum_pagination(); ?>
<?php do_action( ‘bp_before_directory_forums_list’ ); ?>
<table class=”forum”>
<thead>
<tr>
<th id=”th-title”><?php _e( ‘Topic’, ‘buddypress’ ); ?></th>
<th id=”th-postcount”><?php _e( ‘Posts’, ‘buddypress’ ); ?></th>
<th id=”th-freshness”><?php _e( ‘Freshness’, ‘buddypress’ ); ?></th><?php do_action( ‘bp_directory_forums_extra_cell_head’ ); ?>
</tr>
</thead><tbody>
<?php while ( bp_forum_topics() ) : bp_the_forum_topic(); ?>
<tr class=”<?php bp_the_topic_css_class(); ?>”>
<td class=”td-title”>
” title=”<?php _e( ‘Permanent link to this post’, ‘buddypress’ ); ?>”><?php bp_the_topic_title(); ?>
<p class=”topic-meta”>
<span class=”topic-by”><?php /* translators: “started by [poster] in [forum]” */ printf( __( ‘Started by %1$s’, ‘buddypress’ ), bp_get_the_topic_poster_avatar( ‘height=20&width=20’) . bp_get_the_topic_poster_name() ); ?></span><?php if ( !bp_is_group_forum() ) : ?>
<span class=”topic-in”>
<?php
$topic_in = ‘‘ . bp_get_the_topic_object_avatar( ‘type=thumb&width=20&height=20’ ) . ‘‘ .
‘‘ . bp_get_the_topic_object_name() .’‘;/* translators: “started by [poster] in [forum]” */
printf( __( ‘in %1$s’, ‘buddypress’ ), $topic_in );
?></span>
<?php endif; ?>
</p>
</td>
<td class=”td-postcount”>
<?php bp_the_topic_total_posts(); ?>
</td>
<td class=”td-freshness”>
<span class=”time-since”><?php bp_the_topic_time_since_last_post(); ?></span>
<p class=”topic-meta”>
<span class=”freshness-author”>
“><?php bp_the_topic_last_poster_avatar( ‘type=thumb&width=20&height=20’ ); ?>
<?php bp_the_topic_last_poster_name(); ?>
</span>
</p>
</td><?php do_action( ‘bp_directory_forums_extra_cell’ ); ?>
</tr>
<?php do_action( ‘bp_directory_forums_extra_row’ ); ?>
<?php endwhile; ?>
</tbody>
</table><?php do_action( ‘bp_after_directory_forums_list’ ); ?>
<?php bp_forum_pagination_count(); ?><?php bp_forum_pagination(); ?><?php else: ?>
<?php _e( ‘Sorry, there were no forum topics found.’, ‘buddypress’ ); ?><?php endif; ?>
<?php do_action( ‘bp_after_forums_loop’ ); ?>
<?php putRevSlider(‘full_screen_no_form’, ‘2,10’); ?>
October 31, 2016 at 07:10 #142167Laura
ModeratorHello, please share ftp and wp admin access so i can check it 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 2, 2016 at 04:24 #142503Laura
ModeratorHello, ftp too please
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 3, 2016 at 05:32 #142652Laura
ModeratorHello, added it to the content-archive-forum.php of your child theme 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 7, 2016 at 00:31 #143042mbfit
ParticipantHello, while that did put that into the Forums page it doesn’t seem to have the same affect as the Homepage as I expected and seems to be placed in alignment with the width of the forum table then having that ‘landing’ front page look.
I attached images. Also I noticed the short code prints on the bottom of the page as well. I put an image.So is that doable?
November 7, 2016 at 00:39 #143044mbfit
Participantpics
Attachments:
You must be logged in to view attached files.November 8, 2016 at 07:53 #143310Laura
ModeratorHello, this might need a bit more work, as its out of our support scope i can only suggest you to hire a developer to do it for you.
if you want to contact me, email me at laura@seventhqueen.comHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 9, 2016 at 06:40 #143488mbfit
ParticipantThanks Laura! I will put that on the back burner for now. See what plays out down the road.
November 10, 2016 at 07:32 #143690Laura
ModeratorUnderstood 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 12, 2016 at 23:02 #144015mbfit
ParticipantHello, I wanted to ask when inputting words in the Slider, it responds differently with different screen sizes (on different computers). An example is some words don’t fit on screen. Is there a setting that makes it dynamic to different screen sizes that I missed?
I put an example. On my larger screens the words fit.Thanks.
Attachments:
You must be logged in to view attached files.November 14, 2016 at 08:33 #144127Laura
ModeratorHello, yes they may change, i can help you with that with custom css, just need the screen size and access to the site
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
November 24, 2016 at 22:54 #145256mbfit
ParticipantI think this is ok, we’ve adjusted it a bit so that everything has been looking better on various size screens.
November 25, 2016 at 10:53 #145308Laura
ModeratorGlad you could resolve it 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
You must be logged in to reply to this topic.