![]() |
Display albums in member profile
I've been playing around the the memberinfo template for awhile now, I moved the album that appears on the sidebar into a tab. That works, but I would like to find a way to display ALL of the member albums in a new profile tab.
This is the code I used to display the sidebar albums in my current tab " {vb:raw blocks.albums}" I would like to know if there is a way to display all of my albums while keeping the formatting I all ready created on "album.php" |
Still nothing? Man, I swear Vbulletin forum is not as helpful as some of the other communities out there, maybe because this isn't open source?
|
I see that you found the article on creating profile tabs. You probably want to look in includes/class_profileblock.php, function vB_ProfileBlock_Albums::prepare_output() around line 1023. Basically it does a query of the album table and formats the output by rendering the memberinfo_albumbit template for each album.
|
any actual way to this???? other than just hinting out?
|
You could see if there is a modification already or you can hire someone to write one. This is a user run community where we help others customize their site. We can't go and code up everything for you, but we are willing to point you in the right direction and when you get stuck, post up your code, and we can help you out.
|
Hey Lynne,
I really tried my best yet I couldnt make yet work you can check it here the code so far PHP Code:
hope if you can help me as I removed the LIMIT from the sql query so I registered the array contain everything added to the templates that already created and delcared yet it doesnt display the albums???? --------------- Added [DATE]1371390920[/DATE] at [TIME]1371390920[/TIME] --------------- what I have don so far PHP Code:
deleted functions just made straigt away plugin work also removed this $hook_query_fields = $hook_query_joins = $hook_query_where = ''; ($hook = vBulletinHook::fetch_hook('member_profileblock_alb um_query')) ? eval($hook) : false; and added the plugin to work in hook member_profileblock_album_query so the tab disappeared ???? --------------- Added [DATE]1371391385[/DATE] at [TIME]1371391385[/TIME] --------------- so far splitted the plugin into to plugins once to work in member_profileblock_album_query to retrieve all albums PHP Code:
PHP Code:
still not displaying the albums???? |
What about the template memberinfo_block_photos ? We need that code also.
When I create that template and just put in the content: HTML Code:
This is a test. |
Here is what I have done
template memberinfo_block_photos PHP Code:
template memberinfo_block_photosbit PHP Code:
works with each template i.e. the plugin with hook member_profileblock_album_query create the albums bits alltogather which is temaplate memberinfo_block_photosbit and the plugin member_complete create the albums whole template which is memberinfo_block_photos that contains memberinfo_block_photosbit hope this cleared everything???? |
You are creating the template memberinfo_block_photos in both plugins. In the first one you simply want to preregister the variables for use in that template, not create it also.
I would change $albumbits to $albumbits2 throughout. Change the id of the tab from photos to photos2 throughout (both plugin and template). I got it to work with those changes, although it will need some formatting to be done. |
please give me two mintues and I will update u with results dont log off please!
thank you --------------- Added [DATE]1371404477[/DATE] at [TIME]1371404477[/TIME] --------------- Here is what I have done but is not working created two templates created two plugins one template with name memberinfo_block_mpphotos contains PHP Code:
contains PHP Code:
first plugin with hook position member_profileblock_album_query contains PHP Code:
second plugin with hook position member_complete contains PHP Code:
|
I was not talking about the template names, but about the id for your tab:
HTML Code:
<div id="view-photos" HTML Code:
<div id="view-mpphotos" PHP Code:
PHP Code:
|
seconds just testing
pair with me kindly --------------- Added [DATE]1371405329[/DATE] at [TIME]1371405329[/TIME] --------------- I did to the code exactly as you said but it doesnt work???? --------------- Added [DATE]1371405422[/DATE] at [TIME]1371405422[/TIME] --------------- btw my vbulletin version is 4.2.0 --------------- Added [DATE]1371405498[/DATE] at [TIME]1371405498[/TIME] --------------- heeeeeeeeeeeeeeey it does work i really thank you from the deap of my small heart ur so helpful thank you too much --------------- Added [DATE]1371406675[/DATE] at [TIME]1371406675[/TIME] --------------- just any suggestions to make the if statements work as they are allocated with $block_data for example <vb:if condition="$block_data['albumbits2']"> |
You would need to set that variable first:
$this->block_data['albumbits2'] = $albumbits2; |
did it erlier when it wasnt working
seems to me I'm not that bad though or maybe Lynne is a good teacher dont know Thank You Again --------------- Added [DATE]1371408729[/DATE] at [TIME]1371408729[/TIME] --------------- sorrrry it is not working I did it now??? --------------- Added [DATE]1371411515[/DATE] at [TIME]1371411515[/TIME] --------------- I did this is not working PHP Code:
I did this still not working PHP Code:
|
What exactly isn't working - the whole page?
|
no the if statement everything working yet the if statements as well as the count variable I have registered it yet is not working
waiting for your solution many thanks in advance --------------- Added [DATE]1371496940[/DATE] at [TIME]1371496940[/TIME] --------------- Hey Lynne, It retrieves the albums yet if I add the if statements and set the variable of data_block as you said Quote:
the if statement is not working once I add it around the albums and buttons it displays that there is no album the template as follow PHP Code:
PHP Code:
I have tried all what you have suggested me yet is not working?? |
Why are you not using this:
<vb:if condition="$albumbits2"> instead of this: <vb:if condition="$block_data['albumbits2']"> You know that $albumbits2 is defined and registered for use in that template, so why aren't you using it? |
then why I'm setting this
$this->block_data['albumbits2'] = $albumbits2; ? I thought this is block data a permission array that holds permission for many things one of them albumbits2???? am I thinking in the right direction?? --------------- Added [DATE]1371564134[/DATE] at [TIME]1371564134[/TIME] --------------- also registered albumcount yet is not display as well as this variable is not display?? {vb:raw userinfo.userid} --------------- Added [DATE]1371564907[/DATE] at [TIME]1371564907[/TIME] --------------- trying randomly tried this vB_Template::preRegister('memberinfo_block_photos' , array('albumbits2' => $albumbits2)); vB_Template::preRegister('memberinfo_block_photos' , array('albumcount' => $albumcount)); vB_Template::preRegister('memberinfo_block_photos' , array('userinfo' => $userinfo)); vB_Template::preRegister('memberinfo_block_photos' , array('albums' => $albums)); |
And what code did you add to your plugin to get the album count or userinfo - I don't see any code there to define those. And, $albums is not something you can use - it is the query, so it's just a pointer really.
As for why you are trying to use $block_data['albumbits2'], I don't know. If you are just trying to only add code if $albumbits2 exists, then I would use that variable. |
Ok can you tell me how to display the album counts???
|
Probably something like:
$albumcount = $this->registry->db->affected_rows(); |
thank you very much
I would appreciate your help in this thread https://vborg.vbsupport.ru/showthrea...16#post2429816 many thanks in advance |
All times are GMT. The time now is 05:14 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|