Forum Replies Created
-
Author
-
CamyenParticipant
Does the Getshopped Support plugin still work with the latest version of WP/bbp? I installed it and applied your codes. The status label is available but I cannot update the status (there isn’t an option for updating excepted an option for assigning the topic to others) even if I chose admin and topic creator can update the status. Any idea?
CamyenParticipantUPDATE.
The version of Visual Composer is the cause of that error code. I’ve updated it to the latest version. Everything looks good now.
What I am concerning now is how can I download the latest version of Kleo and its pre-packed plugins. As I mentioned in the last thread, I uploaded a Kleo package which was downloaded in July, all the pre-packed plugins are compatible with the package not the latest one. So I need to manually update the pre-packed plugins.
When I go to ThemeForest, it should be an up-to-data package there (I assume), so I don’t need to manually update anything. I can’t identify whether the one I downloaded on today is latest or not, because some folders are missing. How should I use the package I downloaded from ThemeForest on today?
Thank you.
CamyenParticipantI did some research on #reordering the BP profile nav bar and #renaming ‘Activity’ to ‘Wall’
All suggestions seemly are pointed out the code below which should be added to my theme’s function.php. It didn’t make any change on my site. Any idea?
COPY CODEfunction bbg_change_profile_tab_order() {
global $bp;
COPY CODE$bp->bp_nav[‘profile’][‘position’] = 10;
$bp->bp_nav[‘activity’][‘position’] = 20;
COPY CODE$bp->bp_nav[‘friends’][‘position’] = 30;
$bp->bp_nav[‘groups’][‘position’] = 40;
COPY CODE$bp->bp_nav[‘blogs’][‘position’] = 50;
$bp->bp_nav[‘messages’][‘position’] = 60;
COPY CODE$bp->bp_nav[‘settings’][‘position’] = 70;
}
`add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );CamyenParticipantI did some research on #reordering the BP profile nav bar and #renaming ‘Activity’ to ‘Wall’
All suggestions seemly are pointed out the code below which should be added to my theme’s function.php. It didn’t make any change on my site. Any idea?
`function bbg_change_profile_tab_order() {
global $bp;$bp->bp_nav[‘profile’][‘position’] = 10;
$bp->bp_nav[‘activity’][‘position’] = 20;
$bp->bp_nav[‘friends’][‘position’] = 30;
$bp->bp_nav[‘groups’][‘position’] = 40;
$bp->bp_nav[‘blogs’][‘position’] = 50;
$bp->bp_nav[‘messages’][‘position’] = 60;
$bp->bp_nav[‘settings’][‘position’] = 70;
}
add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );CamyenParticipantThanks @Radu. This issue was solved.
Let’s go back to the thread #70284. Is it possible to use css hide the ‘Filled?’ column? I’ve contacted with the plugin’s author who suggested me to download a plugin called ‘Say What?’. But nothing has been changed. Any idea?
CamyenParticipantCamyenParticipantThis code partly works. There is a diamond-like blue conjunction between the element and the expanded bar. It looks strange.
Yes, I’d like to have hover and expend effect on the search. A similar blue conjunction (like above) always appear if I change the colour of the search bar.
Any idea?
Please take a look at Mashable.com. This site has a relatively seamless hover and expand effect. The clickable elements on the menu is properly highlighted with its pop-up.
CamyenParticipantIt works. I don’t know why It always take a long time to see the changes which are made in Theme Options.
Thank you as always.CamyenParticipantIt didn’t works. The Register page layout didn’t show in Full Width. I tested many times and used two browsers.
CamyenParticipantHow can I add a responsive effect on the ‘Search’ tab just like ‘Notification’? Visitors don’t need to click on the ‘magnifying glass’ icon.
CamyenParticipantCould I ask css for the colour of ‘Notification’ tab? It’s shown in the colour of the header. I’d like to choose white.
CamyenParticipantGood! The ‘Follow’ button is fixed. However, my search bar is all in red by the above code.
CamyenParticipantThe screenshot of the search bar is here.
Attachments:
You must be logged in to view attached files.CamyenParticipantIt looks good.
Could I adjust the width of the search bar? I tried some code in style.css. Nothing surprised me. I’d like the search bar to be almost a quarter of the menu.
Beside, my search bar is shown in blue. I have trying to modify it in Theme Options, but nothing was changed. The colour-changing activity is always delayed. I have to close the browser and then login back to check the modification.
CamyenParticipantCamyenParticipantPlease take a look at here:
https://archived.seventhqueen.com/forums/topic/delete-the-arrow-pop-up-on-members-profile
CamyenParticipantThere is a arrow on the middle of members page. It shows other member’s name and avatar. How I can ban this feature?
CamyenParticipantSorry about the messy above. Please ignore that.
This post claim that no matter much codes in there, the template should looks like this:
<?php /* Template Name: Custom Lockdown */ ?> <?php get_header(); ?> /* A lot of code in here */ <?php get_sidebar(); ?> <?php get_footer(); ?>
And, in the case, I should add some codes. The template will looks like this:
<?php /* Template Name: Custom Lockdown */ ?> <?php get_header(); ?> /* A lot of code in here */ <?php if (is_user_logged_in()) :?> <?php get_sidebar(); ?> <?php get_footer(); ?> <?php endif; ?>
There’re two problems here.
1. <?php get_sidebar(); ?>, is not available.
2.<?php endif; ?>, is located upper than <?php get_footer(); ?>Any ideas?
-
AuthorPosts