Patrick Garman
Forum Replies Created
-
Hi – If the issue happens on computers that have never visited the site before then the issue is actually caching on the server side and not the browsers. I’d suggest targeting your searching there.
Forum: Fixing WordPress
In reply to: Customizing options doesnΒ΄t showHi – It looks like there may just be a PHP error killing processing on your site, or your theme may be breaking the customizer. Try switching your theme to the default WordPress theme and disabling your plugins and see if it begins working again.
Forum: Fixing WordPress
In reply to: Verifying URL's in scriptHi – If you notice the URL of your “home” page has /home/ at the end. In order to use a page as the actual home page of your website you need to go to your WordPress settings then go to General > Reading, and then set your static home page to the Home page.
Forum: Themes and Templates
In reply to: [Aviator] Jet pack Logo sizeGlad to hear it! π Just remember if you ever update your theme in the future it may overwrite that change and you may need to do it again.
Forum: Themes and Templates
In reply to: [Aviator] Jet pack Logo sizeHi Golem24 – Looks like after looking at the theme code this is something that requires changing code to change.
If you look in the themes inc folder there is a file jetpack.php
https://themes.trac.wordpress.org/browser/aviator/0.9.4/inc/jetpack.php#L17
In this file you see ‘size’ => ‘medium’ and that just needs changed to ‘size’ => ‘full’ if you want to use the full size image. Simply change medium to full, and then use CSS to size your logo however big/small you want and you will not see it be pixelated.
Hope this helps!
Forum: Hacks
In reply to: Remove ?add-to-cart= from url's and page urls.Hi qualityc – You may be able to use Google Webmaster Tools to tell Google to ignore the add to cart URL parameter, I’ve included a link below.
https://support.google.com/webmasters/answer/6080548?hl=en&rd=1
Forum: Themes and Templates
In reply to: [Aviator] Jet pack Logo sizeHi Golem24 – Since “ugly” is a pretty subjective term I am going to assume you mean pixelated by being stretched out. The issue here is that the logo image source being used is a WordPress generated version that is only 300 pixels wide, so when you stretch it to 510 pixels wide you are stretching it almost 2x it’s natural width.
When selecting the logo do you get an “image size” option at all? or can you edit the URL of the logo and just remove the “-300×108” from the file name?
Forum: Fixing WordPress
In reply to: Widgets Corrupted???HI jeremygadd – Definitely very odd looking! My first guess would be that something within your site is breaking these styles and not so much WordPress on it’s own. Typically it is a plugin or theme that can cause these types of breaks. Try first clearing your browser cache and see if that resolves it (usually doesn’t, but fixes it often enough to warrant trying it first as the “easy” fix). If that doesn’t work try disabling all your plugins on your site and changing over to a default WordPress theme without any modifications to it (Twenty Fifteen just came out, maybe try using that!). If the widgets now work after disabling all the third party code on the site then start turning everything back on one at a time. Each time you enable something look at your widgets again and see when they break – whatever you just activated before they broke is the culprit. Now depending on what is actually breaking the widgets would determine your course of action – if it is a “premium” theme or plugin you would need to contact the developer, a plugin on WordPress.org try that specific plugins section of the forum. Might be worth making sure everything on your site is updated as well to make sure you have the latest updates.
Good luck!
Forum: Fixing WordPress
In reply to: Form management pluginHi Tophee – There are not many form plugins out there that come to mind that would fit all your needs. My first though is instead of a typical form is that you need something to actually store the data on the specific user instead of submitting the data. If it were a user profile type form it would likely re-load the info when the user comes back to the form. As Tim suggested there are commercial plugins that offer this – I personally recommend Ninja Forms (free) and one of their extensions (paid) which allows editing user profile fields. I believe you can create custom user profile data using this but am not 100% sure.
For your specific situation contacting Ninja Forms or maybe Gravity Forms support would likely get you a better answer as to how you could best do this as it is a bit of a specialized need.
Forum: Reviews
In reply to: [WooCommerce] WORST SHOPPING CART EVERHi ReggiesRoast – Jan’s exactly right the email is completely reliant on your site and web server to be setup correctly. Our documentation is available for anyone to use and explains in detail about why emails may not be sending any why sometimes it may not even be an email issue.
Forum: Plugins
In reply to: [WooCommerce] World Pay callback not updating sale statusIf you are using our plugin (http://www.woothemes.com/products/worldpay/) please open a support ticket so we can take a look for you.
Forum: Plugins
In reply to: [WooCommerce] Using Woocommerce with Thesis 2.0You may want to check in with the Thesis developers how their integration is coming along π
@mark_forrester We're working on a Thesis 2 integration now. I'll know more once we have everything working together properly π
— pearsonified (@pearsonified) January 9, 2013
Forum: Plugins
In reply to: [WooCommerce] Get HTTPS to be default for css/fonts/imagesI’d suggest just using the Force SSL option of WooCommerce and dropping any other HTTPS forcing plugins. Then you would want to enable Unforce SSL as well because SSL on at all times isn’t that great for performance π
When in SSL WordPress will automatically make all properly enqueued assets load via HTTPS, if your google font is loading over HTTP instead you may have it hard coded instead of enqueued.
Forum: Plugins
In reply to: [WooCommerce] Integrating with Custom Post TypesProducts are a custom post type themselves, and the categories/tags are custom taxonomies. I’m not sure exactly what your ultimate goal is, so I’m not sure how to suggest linking these all together.
Forum: Plugins
In reply to: [WooCommerce] Adding Multiple Products to the Cart at onceThe add to cart query arg does not support multiple products being added at once, unfortunately this isn’t possible (using a URL) out of the box. If you want to use a URL you’d need to use a custom argument that triggers some custom code on the backend to programmatically add the products to the cart.