tycoonbob
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Universal CSS Code to manage Font?Thanks.
I am using Canvas v5.1.5, by WooThemes.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Help with Compression!Well, I got it working.
I had:
gzip onSet in my Nginx.conf file, but I didn’t have any MIME-types specified, so it was only doing gzip for text files, and not CSS or JS. I added this line:
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;Right below gzip on and PageSpeed is much happier.
In regards to issue number two about Browser caching, that is also something I resolved in my nginx server config with this line:
location ~* .(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|css|rss|atom|js|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
expires max; log_not_found off; access_log off;Easy fixes, outside of W3TC.
Forum: Themes and Templates
In reply to: [Theme: WooThemes–Canvas] Custom CSS helpI thank you for your response. I wasn’t aware I wasn’t supposed to ask a question like this here, and thank you for pointing me where to go.
I added the code you posted about in the Custom CSS box of my theme, and changed the #FFFFFF to #333333 but it literally did nothing to fix the box I want changed. I’m at a loss since I don’t know what I’m doing, but I assume I should take it over to that CSS forum?
Forum: Plugins
In reply to: [WooCommerce] eCommerce Theme problem with product listingI really appreciate it. I am an IT Professional, but not with web design or code (other than SQL). I’m guessing Chrome Tools can tell me what what that box is called?
Any tutorials that can help me get basic knowledge of what I’m trying to do? I’m obviously new to this, and trying to help a friend out.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] eCommerce Theme problem with product listingI have another question, and figured I would just post it here.
When looking at a product, where do I change the color of the product description box? My text is white, and so is that box and I can’t find where to change it.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] eCommerce Theme problem with product listingUpdating to v5.1.5 did the trick. Not sure why I didn’t bother checking for a more recent version!
Thanks!
Forum: Themes and Templates
In reply to: eCommerce Theme problem with product listingThanks.
Forum: Installing WordPress
In reply to: What went wrong with my install??I tried the first two fixes in your link,
I first tried adding these lines to wp-config.php:
define(‘WP_HOME’,’http://www.tycoonbob.com’);
define(‘WP_SITEURL’,’http://www.tycoonbob.com’);and also adding these lines to functions.php:
update_option(‘siteurl’,’http://www.tycoonbob.com’);
update_option(‘home’,’http://www.tycoonbob.com’);Neither worked at resolving my issue. But once I removed those edits, the formatting is working properly. Odd?
And now any computer either on my LAN, or over the internet gets access denied, other than the local server itself. I have tried a combination of different permission settings, but is there something I missed?