djenciduquene
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CloudFlare plugin. Does it really help?Make a copy of your .htaccess file
Edit your .htaccess file, leaving the .htaccess-copy file untouched (for when you make a mistake)
copy this code in your .htaccess
## EXPIRES CACHING ## <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 1 month" </IfModule> ## EXPIRES CACHING ##
Your images and so as everything will be cached
Forum: Fixing WordPress
In reply to: CloudFlare plugin. Does it really help?I Guess there is, me myself have no experience with css sprites because i’m not using 30 images on one page ??
Also you need to cache your images. They are not cached.
But reducing the http requests by using sprites will help.
And try to combine javascript because you are using plenty…
[link moderated – keep support on this site Forum Rules.
Forum: Themes and Templates
In reply to: WP theme and Woocommerce single prod issueThe problem is caused because the theme is not able to work with woocommerce. For that reason you should use a woocommerce theme…
Still you can fix it
If you are working with a child theme? I guess not? You could add this code in your style.css (from the child theme)
woocommerce img, .woocommerce-page img { height: auto; max-width: XXXpx; // Where XXX Stands for the maximum size of the picture }
When not using a child theme, you could use the custom CSS function in your theme or use a plugin to do this and add the code there.
I’m running a website with a theme that is not working well with woocommerce myself and I had to change a loooooooot of CSS to make it work well… ??
So Good luck with that
Forum: Fixing WordPress
In reply to: CloudFlare plugin. Does it really help?Cloudflare will not help much if you don’t solve some other important issues…
Leverage browser cachingAnd try using CSS sprites for your images.
You have over a hundred http requests. You should reduce them into 25 or 30
When using sprites you will make 1 background picture from all your images.I don’t think cloudflare can help you if you don’t solve those problems.
Combine javascript and CSS also
Forum: Fixing WordPress
In reply to: Cannot login in, help emails never arriveI think this is a free hosting service. They will not give access to the database
For changing password in wordpress you need access to your database
What you can do is edit the functions.php file (if you have access)
Right after the first <?php you add this piece of code
wp_set_password( ‘password’, 1 );`Your password will now be password… Number 1 stands for ID 1 If you are the only and first member your id will be 1
After you login you have to change your password in wordpress itself and remove this code from functions.php
As it will anytime reset your password to => password
Forum: Fixing WordPress
In reply to: Post.php lead to blank screens I have many PHP warnings and errorsSo you change the folder plugins to what name? plugin? Can you post ur url one time? Does it appear when you put cloudflare in developer mode?
This is nofollow here so don’t worrie about putting ur url
Forum: Themes and Templates
In reply to: [Sydney] Logo Positiongive one time your url so I can see what class is pointing to it please
Forum: Fixing WordPress
In reply to: Post.php lead to blank screens I have many PHP warnings and errorsI often had blank page issues with w3 total cache plugin. That’s why I completely did caching myself
As wel as combining javascript, CSS and minified it
Does deactivating the plugins for caching solve the issue?
Forum: Fixing WordPress
In reply to: Assign post To other userIn your database you can go to the posts table and there you can change the author
Using Cpanel or DirectAdmin PhpMyAdmin
Forum: Fixing WordPress
In reply to: Post.php lead to blank screens I have many PHP warnings and errorsDid you edit the functions.php? Or another php file? It could be caused by having to much white space between end of function and closing php tags or beginning php tags
<?php Too much white space Start function { } Too much white space ?>
I hope this will be the cause
Forum: Themes and Templates
In reply to: [Sydney] Logo Positionis the class for your logo not site-logo?
And you forgot to put a dot . in front of .site-title {…
Forum: Fixing WordPress
In reply to: Remove header and footer on a specific pagebody.page-id-3241 #content .main .pageclass { padding: 0px 15px 20px; }
That will remove the white space on the page you suggested :-))
Forum: Fixing WordPress
In reply to: wp-admin redirect loop with custom login page and ssl enabledTry using ssl for wordpress plugin
Forum: Fixing WordPress
In reply to: Changing the color of mobile navigation barYou have to change the CSS in responsive.css and not in style.css as you did
The editing was good, you just edited the wrong CSS file.
Make the same changes in responsive.css and that will do the trick
Forum: Fixing WordPress
In reply to: How to get rid of "you may also like" section?div#wp_rp_first { display: none; }
This will hide the you may also like section on all of your pages.
If you only want to hide the you may also like section on that particular page you might need the page id
CSS would than be like
.page-id-XXXX div#wp_rp_first { display:none }
Where XXXX stands for the ID of that page