parthunteraustralia
Forum Replies Created
-
I checked my settings and, “Don’t cache pages for logged in users” has always been ticked.
Is this what you were talking about?
Ill disable the cache for logged in users and see if it solves it.
Hi @bogdanstratulat,
Could you expand more on the ‘manual set-up’? I set up W3 Total Cache myself (just following posts on google).
My site is a classifieds site where users post ads (think Craiglists or Gumtree). Would unticking the option for ‘Cache Pages for Logged in Users’ affect the site negativley in anyway?
Thanks
Forum: Plugins
In reply to: [W3 Total Cache] W3 sometimes not caching hompage….Thanks guys. This topic is closed
Forum: Plugins
In reply to: [W3 Total Cache] W3 sometimes not caching hompage….Thanks @gidomanders, that fixes the speed issue, it still redirects but I am happy with it being cached now
Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css filesI looked at the page source (view-source:https://parthunter.com.au/), and yes on line 138 it seems to re-load the parent css (modern.css). How can I continue to solve this issue?
Thanks
Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css filesThanks for the info.
I know what I’ve changed and it’s still showing parent theme css.
What I’ll do is I’ll make my child modern.css blank. Then only change the header colour.
I’ll let you know how it goes within the next hour.
Thanks
Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css filesThats great to know. Can I ask how you can view that?
Also sorry to sound like a total beginner, but how would I find the CSS rules?
Forum: Fixing WordPress
In reply to: Child theme .css files are not overriding their parent .css files@abhijitrakas
Unfortunatly it does not change.This is the code I have in the functions.php of the child theme currently:
<?php function my_theme_enqueue_styles() { $parent_style = 'adforest-style'; // This is 'adforest-style' for the AdForest theme. wp_enqueue_style( $parent_style, get_template_directory_uri() . '/css/modern.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/modern.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); ?>
This is my site, with the code above. (I do not know how to view which order the .css are loaded)
https://parthunter.com.au/- This reply was modified 6 years, 6 months ago by parthunteraustralia.