gorvie
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Popular Posts] How to get item_position to workForum: Plugins
In reply to: [WordPress Popular Posts] How to get item_position to workAwesome that worked!
Any way to get rid of the gap in between thumnails and info on the right?
looks good on mobile just on desktop a bit spaced out.Appreciate your help!
Forum: Plugins
In reply to: [WordPress Popular Posts] How to get item_position to workThanks for your help, That worked.
Few more things i could use help on..
1. Any way to bring in the picture and title/info more closer to the center of page? removing the gap in between? Preferably without effecting the css on mobile?This is my current code
.wpp-list li {
margin: 0.5em;
font-size: 1em;
line-height: 1.;
text-align:center;
text-transform: uppercase;
}
.wpp-list li .wpp-thumbnail {
display: block;
margin: 0 0 0em;
width: 20%;
height: auto;}
.wpp-post-title {
font-size: 20px;
color:#fff;}
@media only screen and (max-width: 600px) {
.wpp-post-title {
font-size: 10px;
color:#fff;
}
}2. Id like to change size/color on item position, is there a was for css (like: .wpp-post-title)
3. Lastly, When hovering title of posts, it gets smaller.. Is there a tweak i can put in the css above?
Thanks again!
Forum: Plugins
In reply to: [WordPress Popular Posts] How to get item_position to workForum: Fixing WordPress
In reply to: Favicon.ico GTmetrix delaysThank you! It worked. No more 302/ delayed favicon times.
Not even my hosting support could tell me that in the multiple times ive talked to them.
I appreciate it!
Forum: Fixing WordPress
In reply to: Favicon.ico GTmetrix delaysgtmetrix
appears to be loading 2 favicon.ico now..one with normal size etc.. the other one with 302, 0 size
Forum: Fixing WordPress
In reply to: How to set/force maximum photo dimensions when uploadingOk i found this code to limit dimensions. seems to work.
https://www.webempresa.com/foro/administracion-wordpress/limitar-tamano-de-imagen-subida-a-la-libreria-multimediaOnly issue is that there is no warning that image is too large, etc. the post still gets published but just with a blank image. This is better than the 500 error althoe.
Any idea how to tweak it to show warning and disable the use of large photos etc?
thanks
Forum: Fixing WordPress
In reply to: How to set/force maximum photo dimensions when uploadingTried this code but, seems to be for image size only. Trying to figure out how to apply dimensions rather than size.
If i could just fix the issue of users not being able to load large photos that would be nice.. I recall media page giving error saying try photo that is less than 2500 x 2500 etc. i see that users attempt to upload 3000 x 3000 and that’s when they hit the 500 error. The post still goes through, just the featured image isnt set..
But the code provided ghosts the image when user uploads large photos, but no error message and the post still goes through, just no image.
Idealy trying to get something that blocks large photos based on their dimensions and returns message (preferably)
Thanks again
Forum: Fixing WordPress
In reply to: Favicon.ico GTmetrix delaysForum: Fixing WordPress
In reply to: Favicon.ico GTmetrix delaysThe only one with a 302 status and 0 size file..
Forum: Fixing WordPress
In reply to: Favicon.ico GTmetrix delaysSwapped for a favicon.ico.. Which is now loading at 3.95 seconds.. Any idea why this is happening?
Forum: Fixing WordPress
In reply to: Favicon.ico GTmetrix delaysThanks for your reply.
I have redirected traffic to homepage when hitting 404, (Cause i had made changes to permalinks) and figured alot of old links (google) were going to be clicked.
Ill try putting a favicon.ico file and see if that helps at all.
And yes i get a “waiting” delay alot of times before loading any content, do you think this is related to the “delay when visiting no existing url”?
Forum: Fixing WordPress
In reply to: Ugly Loading Category SectionHow to delete my website from support topics? I cant seem to delete account, edit topics or anything like that.
Forum: Fixing WordPress
In reply to: Change “Clicked” Link Color?@prashant Singh this worked, thanks a ton!!
Forum: Fixing WordPress
In reply to: Homepage only showing 12 maximum postsI was able to find solution in functions.php.
Used find tool searching “12” in all php folders till i find code which needed to be fixed.
if (!is_admin() && $query->is_category()){
$query->set( ‘posts_per_page’, 12 );thanks