evocativemedia
Forum Replies Created
-
AuthorPosts
-
Thanks, but this doesn’t work. It changes the select value but not the layout.
This reply has been marked as private.This reply has been marked as private.In the attachment you can see what I mean. Is there a hook I can use for setting a default column setup there? In that case I can simply hide the loop actions with css..
Yes it worked, thank you very much!
June 25, 2019 at 10:20 am in reply to: Add custom subnav to buddypress userprofile tab \'favorites\' #494688Oke I stuck with my initial setup in which blogposts are separated from geodirectory. I now made a custom subnav ‘blogposts’ to the ‘favorites’ tab in the following way:
function setup_favorite_blogs_subnav() {
$parent_slug = ‘favorites’;
bp_core_new_subnav_item( array(
‘name’ => ‘Blogs’,
‘slug’ => ‘blogs’,
‘parent_slug’ => $parent_slug,
‘parent_url’ => trailingslashit( bp_loggedin_user_domain() . $parent_slug ) ,
‘screen_function’ => ‘show_my_favorite_blogs’,
));}
add_action( ‘bp_setup_nav’, ‘setup_favorite_blogs_subnav’ );
function show_my_favorite_blogs() {
add_action( ‘bp_template_title’, ‘subnav_title’ );
add_action( ‘bp_template_content’, ‘subnav_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
}function subnav_title() {
echo ‘My favorite posts’;
}function subnav_content() {
//Present a query here that fetches the user’s favorite blogposts and display them accordingly
}I put this in my functions.php
Thanks anyways guys!
June 24, 2019 at 8:06 am in reply to: Add custom subnav to buddypress userprofile tab \'favorites\' #494429Yes I am aware of the customization part and I want to code it poperly, that is why I ask for a hook or anything. Is there a hook?
The CPT solution is creative but might not be suitable for me whereas one of the core functionalities I am offering to users is running their own blog. If I make a blog CPT, can users create categories front-end? That would be a prerequisite..
June 21, 2019 at 8:06 am in reply to: Custom footer on archive and search pages in my own theme #494130I am using GDV2.
June 21, 2019 at 8:06 am in reply to: Custom footer on archive and search pages in my own theme #494129Ah amazing, your reply made me suddenly realize that the post category archive also does not have a footer.. Hence I found a condition somewhere that states $show_footer = !(is_archive);
-
AuthorPosts