Awareman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!Hello, thank you very much.
I see that the problem is solved now. I’ll read your link.
However, yes I am *paranoid* with image quality ??
I’m a computer graphic artist and I can percieve the difference greatly.
Look: https://www.gillesnuytens.com/temp/problem.png
Maybe “regular” people won’t see it but I do…Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!Ok, I’ll let you know what they say about this. Thank you.
Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!After checking, there is no such folder.
Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!I can’t say. I don’t have access to the FTP at the moment, the host has modified its security recently and my software can’t connect to it (a problem of “error 421 cleartext session” or something).
Well, I’ll check if I can access the FTP again with another tool. In case it’s hidden like you say. What should I do?
- This reply was modified 6 years, 7 months ago by Awareman.
Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!Hello. Yes indeed, that “blizhost-cloudcache” is actually installed.
On the top of the plugin page, I have this message:
Blizhost CloudCache Purge requires Jetpack-connected plugin to use WordPress Image CDN. Please install and connect this plugin to automatically use this feature. Do not show again.
This is weird. If it’s not installed, I wonder why it’s doing this :-/
Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!Hello. Thank you! But what is “jetpack”?
I can’t find that in my admin panel…After looking on google, it looks like it’s a plugin but I don’t have that in my plugin list.
- This reply was modified 6 years, 7 months ago by Awareman.
Forum: Fixing WordPress
In reply to: Images lower in quality than what I uploaded!Look at the differences. I scaled the images at 300% so you can clearly see that the image displayed has been modified:
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlyI guess, I’ll have to find help somewhere else!
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlySo… nobody here? :-/
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlyWhat I did so far:
The code below has been put on the index.php:
<?php if ( post_password_required() ) { continue; } else { echo ''; } ?>
However, the problem with that is when there are for exemple more than 10 password protected posts, the first page is empty, wich is bad. So, that is not a good solution. Works only when there are once in a while password protected posts.
Secondly, I made a new page template by cloning the index.php and put the template things on the top:
<?php /* Template Name: Private (TEST) */ ?> <?php get_header(); ?> etc...
I then tried many things and tests, some got results, some big bugs, others worked halfly but with bugs too or missing stuff…
<!-- test 1 --> <?php query_posts('cat=130'.get_the_title().'&post_status=publish,future'); if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- end test 1 --> <!-- test 2 --> <?php query_posts('category_name=prive'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- end test 2 -->
Any suggestion, help? I’m not a coder and have no real notion of PHP, only HTML. I took these lines of code here and there with google search…
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlyI found this piece of code that some sort works partially (to put in the index.php of the theme folder):
<?php if ( post_password_required() ) { continue; } else { echo 'normal post'; } ?>
It hides the password protected posts, but then it hides it everywhere. And I want either a special page where to see them, either having it into a category. But with that code, it vanishes everywhere…
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlySorry, I’ve been looking around on how to use or to make this thing to work, but I can’t even seem to understand a single piece of this plug-in, or its actual purpose…
Any other suggestion?
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlyHi again. I’ve installed the plugin, but I’m a little lost there on what to do next… o.O
Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlyHello! Thank you. I will have a look at this!