-
Author
Tagged: profile page, group single page
-
May 6, 2015 at 22:57 #57635timastarParticipant
Hi,
I want a full width header on group single page with right sidebar like profile page. How can I do this?I tried many ways.
Thanks in advance.May 6, 2015 at 23:15 #57640sharmstrModeratorYou can’t. Its only available in the profile right now. You can submit your request in the new Feature Request section to be voted on.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
May 7, 2015 at 13:42 #57694timastarParticipantThanks,
But I want to do it in child theme.Can I know in which file I have to work?May 7, 2015 at 16:04 #57715sharmstrModeratorThere will be several files. Put this in your childs function.php file and it will print out which templates files were called. Just load the group page and view the source.
COPY CODE/** * show included template files */ add_action('all','template_snoop'); function template_snoop(){ $args = func_get_args(); if( !is_admin() and $args[0] ){ if( $args[0] == 'template_include' ) { echo "<!-- Base Template: {$args[1]} -->\n"; } elseif( strpos($args[0],'get_template_part_') === 0 ) { global $last_template_snoop; if( $last_template_snoop ) echo "\n\n<!-- End Template Part: {$last_template_snoop} -->"; $tpl = rtrim(join('-', array_slice($args,1)),'-').'.php'; echo "\n<!-- Template Part: {$tpl} -->\n\n"; $last_template_snoop = $tpl; } } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
May 7, 2015 at 19:43 #57767timastarParticipantThanks,
But I actually wanted to know which template is used for the full width header profile page.I checked themembers/single/member-header.php and members/single/home.php .Any thing else there for that?May 7, 2015 at 20:37 #57785sharmstrModeratorThe code I gave you shows you that. Anyhow, /members/single/member-header.php is called from /members/single/home.php
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
June 15, 2015 at 18:57 #62935maelgaParticipantI have also been spending hours to find out how to have a full-width header for groups and just cannot find out any template file.
@timastar: have you found a answer for this?
@sharmstr: I have run your function and it shows that the only templates used are for the modal login/register form.-
page-parts/general-login-modal.php
page-parts/general-register-modal.php
page-parts/general-forgot-modal.phpFrom what location and How is this single group page rendered?
June 15, 2015 at 19:00 #62938sharmstrModeratorIts now available in Kleo 3. Theme Options > Buddypress
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
June 16, 2015 at 02:43 #63044maelgaParticipantI am actually using Sweetdate 🙂
Can we have this implemented too?
Alternatively, could you copy some code I could replace in my child theme?
Thanks @sharmstr
June 16, 2015 at 02:57 #63045sharmstrModeratorThen why are you posting in the Kleo forum? In any case, I cant help. I’ve never used Sweet Date.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
June 16, 2015 at 03:23 #63047maelgaParticipantThe framework is the same.
The issue is the same.If you could share the changes you made, I can implement it myself.
Your help is very much appreciated.
June 16, 2015 at 03:51 #63050sharmstrModeratorI didnt make any changes. Its a new option in Kleo.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.