yes I looked into that yesterday requires a newer release than mine, and once again my constraints won't allow that, I've found alternate screencast capture and could convert format, just more work.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Am trying to implement this, but I have a challenge.
The /discussion/featured page has only one page at the moment but the pagination counts upto the number of pages /discussions has. When I click on page 2 or other pages, I get no discussion was found.
After a few hours of trial, I thought I could use the BeforeBuildPager event that I found somewhere in vanilla code. So I added this:
public function DiscussionsController_BeforeBuildPager_Handler($Sender) { if($this->CustomView === TRUE) { $DiscussionsCount = count($Sender->Data["Discussions"]->result()); $Sender->SetData('CountDiscussions', $DiscussionsCount); } }
In hopes that if I count the result the featured query returned and set the value of CountDiscussions accordingly, it will resolve. But, unfortunately, the only thing this does is hide the pagination altogether in the /discussions/featured page.
Answers
thx. wouldn't work for me if it was windows. I think bleistivt has something similar as well.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
What distro of linux do you use?
I have used byzanz in the past. http://askubuntu.com/questions/107726/how-to-create-animated-gif-images-of-a-screencast
Search first
Check out the Documentation! We are always looking for new content and pull requests.
Click on insightful, awesome, and funny reactions to thank community volunteers for their valuable posts.
yes I looked into that yesterday requires a newer release than mine, and once again my constraints won't allow that, I've found alternate screencast capture and could convert format, just more work.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Am trying to implement this, but I have a challenge.
The /discussion/featured page has only one page at the moment but the pagination counts upto the number of pages /discussions has. When I click on page 2 or other pages, I get no discussion was found.
After a few hours of trial, I thought I could use the
BeforeBuildPager
event that I found somewhere in vanilla code. So I added this:public function DiscussionsController_BeforeBuildPager_Handler($Sender) { if($this->CustomView === TRUE) { $DiscussionsCount = count($Sender->Data["Discussions"]->result()); $Sender->SetData('CountDiscussions', $DiscussionsCount); } }
In hopes that if I count the result the featured query returned and set the value of
CountDiscussions
accordingly, it will resolve. But, unfortunately, the only thing this does is hide the pagination altogether in the /discussions/featured page.So, @hgtonight, How do I resolve this?
@peregrine Any idea?
@airsay did you face this challenge too?