PyroCMS - Pagination won't display on blog module - pyrocms

I'm having some serious trouble getting the pagination to show up on the standard blog module. It's is included as {{ pagination }} with all the included themes, however it seems that count is set to 25 on the back end, and whenever I add a limit="4" for example, the posts are limited, however the pagination still does not show. Any help would be greatly appreciated.

Have you followed all the pagination steps outlined on this page ...
http://docs.pyrocms.com/2.2/manual/plugins/streams/entry-looping#pagination

Related

Laravel & Blade templating

I am new to laravel & blade templating also MVC.. I just want to know how to use ids on template file to fetch db values.. can anyone tell me? I can able to save values to db.. but how to get back on same template?
If you're a visual learner, I recommend Laracasts. They've got lots of free content to get you up and running with laravel in no time. They have paid content too. I recommend you visit this link to get the basics of laravel
First read the full docs from the Laravel. After read this
link . The crud is the best for this.:))

Customizing the paginator view in Laravel 5.2

I've been reading the docs and set up a basic app.
Every issue I've had before I've been able to solve by looking in the docs and occasionally using Google, however I can't figure this one out.
I'm using Laravel version 5.2.43 and the Paginator works fine.
I use it in my view like this,
$data->links()
But now I would like to customize the look of the paginator.
So I tried running this command
php artisan vendor:publish --tag=laravel-pagination
In the hopes of simply being able to customize that view instead of creating a new one all over but that command didn't work, it just said
Nothing to publish for tag [laravel-pagination]
So, instead I did this.
{{ $data->links('folder.viewName') }}
But this command gives me this error,
Argument 1 passed to Illuminate\Pagination\LengthAwarePaginator::links() must be an instance of Illuminate\Contracts\Pagination\Presenter, string given
So I'm not sure what's going on. The pagination works but I can't set the view myself.
Any thoughts on what's going on here?
Any help would be greatly appreciated.
I believe you can't do this in Laravel 5.2 without "hacking" the framework. Fortunately, Laravel 5.3 is released this week and it features custom pagination views
Custom pagination in Laravel 5.3
So it turns out I've been reading the 5.3 documentation for Laravel all this time. Which explains a lot of things...
So when 5.3 comes out we can do
$paginator->links("myOwnView")
Until then, I've done it the manual way of using the instances inside the paginator object.

Found a issue related to Laravel routing

I have issue related to Laravel routing. For example if my site is xyz.com and i have link on my home page Instagram.
Then it does not take me to the Instagram link instead of opening this link it opens the wwww.servername/laravel/public/https://www.instagram.com/myprofile/ instead. How can I open a new link?
Your link is being generated using blade functionality. However based on the discussion in the comments above, the link does not sit within a blade file, and thus the blade functionality, specifically in this case url, is not being called.
Please ensure the following:
Blade functions sit within a .blade.php file
url is called within the blade markers {{ and }}
Homepage - This will take u to homepage
This post - This will take u to your link in this case this post
Best Regards

Article Content formatting Issue with modules

I faced a strange issue with Joomla default Articles option with custom module.
In joomla article section when I enter some text like
Price is $20 its not displaying on the site front end. When I use with a space $ 20 It works fine.
This article is showing on the front end with custom module,
Like this article content is reading from DB using a custom module and out put like
echo $fullArticle = JHtml::_('content.prepare', $values->introtext);
This module is loading inside another article with {loadposition mypostion}
When I put $20 directly in any other article its works fine, I think using custom module and loading position time the Joomla thinks $20 as a variable or something ?
Please help me to resolve this issue!
Solved the issue myself,
I created a content plugin and in that all $ symbol replaced with $ I its works!
something like,
$article_content = str_replace('$','$',$article->text);
Hope this may help someone else in future.

Get Top/Best Rated Product in Magento

I want to best rated product on a magento homepage. I have product reviewing module configured on my site.
i have tried following this http://www.odino.org/84/retrieve-top-rated-products-in-magento
but am unable to get it working.
My homepage is formed my calling one block from the cms home page {{block type="page/html" template="page/html/home.phtml"}}
and i have tried putting the php code in home.phtml
The link i have posted asks to create a helper, but i don't know how to go about that, so what i did was wrote a normal function within the page and called it.
Any help would be seriously appreciated :)
Thanks
Look at this module from Inchoo, explained with all the required changes you need to make with screenshots. Hopefully this will be helpful
http://inchoo.net/ecommerce/magento/bestseller-products-in-magento/

Resources