shooz
Forum Replies Created
-
Forum: Plugins
In reply to: [EasyIndex] Pagination / Page navigation?Thanks for the throughout response Jayce!
I understand, however i still haven’t found a way to make it work for my bigger categories, it always times out, and show a blank page instead. Even after adjusting my php and server timeout settings. I guess it’s never a good idea to load +1000 items on one page.
I will wait patiently for the pagination to be added.
Thought i had already added my solution for this, guess it didn’t save it.
But i solved all Photon problems in relation to your plugin, by using lazy load.Forum: Plugins
In reply to: [EasyIndex] Pagination / Page navigation?No update on this ?
I would really like to use your plugin, but in it’s current state, it’s broken for sites like mine with alot of content.- This reply was modified 7 years, 10 months ago by shooz.
Is this really true ? And for how long do you supposedly need to keep the information ?
I have nothing but Google Analytics, and strictly required cookies on my sites, logs are autodeleted, so in reality this means that extended user data now has to be logged and stored in two places instead of one, and your own data with random private persons for all sites you visit ?
To have this kind of evidence, you would need to keep atleast IP Address, Timestamp, and possibly even have to install click monitoring to prove that the user actually clicked the consent, unless a plugin does it for you (but that doesn’t make it less intrusive).
This doesn’t seem very well thoughtout, and would make sites even more privacy intrusive, instead of the intended opposite.
Surely there must be missing something here ?- This reply was modified 8 years ago by shooz.
Forum: Plugins
In reply to: [Easy Load More] Load more content loads after the buttonThanks alot Idiom! That worked beautifully! 🙂
If anyone else is using this theme, or any other theme from the same creator, remember to add it in both content-posts-home and content-posts or it won’t work.Forum: Plugins
In reply to: [Widgets In Tabs] How to change WIT text color ?Solved, enter the following into custom css, if you cannot see the titles of WIT in the widget area.
a.wit-tab-title { opacity:1 }Turns out it was a custom css variable which prevented the thumbs from showing.
For anyone with the same problem, simply add the following to your custom css, and your thumbs will show everywhere again.div.arpw-random-post .wp-post-image { display: block; }Forum: Themes and Templates
In reply to: [Modality] Remove featured image from HomeSolving my own post again 🙂
Add the following to custom css
.home.blog .wp-post-image { display: none !important; }Featured image is now gone from the home/blog page, but shows everywhere else.
- This reply was modified 8 years, 11 months ago by shooz.
Forum: Themes and Templates
In reply to: [Modality] Remove featured image from HomeUnfortunately, but logically the above method also removed featured images from widgets on the front/homepage.
Could someone please refer me to the correct solution of removing featured images from appearing on top on posts on the front/home page only?
Forum: Themes and Templates
In reply to: [Modality] Remove featured image from HomeOkay i found a solution, but it’s probably not the best way to do it.
in /wp-content/themes/modality/
open post-formats.phpSearch:
<div class=”thumb-wrapper”>Delete <?php the_post_thumbnail(‘full’); ?>
Featured images are now gone from the front/home page, but still show up everywhere else where it’s supposed to.