Austin Ginder
Forum Replies Created
-
Fully agree. One look at my admin menu and you’ll agree: https://cloudup.com/cWJkixz5vzT. Either put it next to your SEO plugin or move it back under the Tools or Settings.
Forum: Plugins
In reply to: [WP eCommerce] Shipping method selectionI’m having the same problem with the following website: http://stroopies.net/. I’m using the Table Rate shipping as configured like so: https://cloudup.com/cVSMwUVcRi9.
WP e-Commerce 3.8.14.2
WordPress 3.9.2Forum: Plugins
In reply to: [Intuitive Custom Post Order] Missing custom post typeI did not.
I was able to solve this problem by renaming the folder Twig to twig. Since most web servers are case sensitive, I’m going to say this a bug with the plugin.
Yep. That is correct. When I move my website to a new server the template says missing. Then it shows the old absolute path something like /var/www/webhost/cluster01/website/wp-content/themes/. This happens on this screen: http://note.io/17Gv6Ue.
Forum: Networking WordPress
In reply to: Any good Backup Plugin for MultiSite WP?I started a thread on the BackWPup presales forum for backing up subsites on multisite. http://marketpress.com/support/topic/multisite-features/
Here is the error:
Warning: require_once(cache/Google_Cache.php): failed to open stream: No such file or directory in /var/www/vhosts/[removed]/wp-content/plugins/google-analyticator/google-api-php-client/src/Google_Client.php on line 57 Fatal error: require_once(): Failed opening required ‘cache/Google_Cache.php’ (include_path=’/var/www/vhosts/[removed]/wp-content/plugins/google-analyticator/google-api-php-client/src:.:’) in /var/www/vhosts/dv202.anchordev.com/dv202.anchordev.com/wp-content/plugins/google-analyticator/google-api-php-client/src/Google_Client.php on line 57
I was able to figure out my issue after seeing the error. I use git to deploy from my development server to my production server. In my .gitignore files I’m ignoring all /cache folders. After removed “/cache” from my .gitignore I was able to get it working.
Forum: Fixing WordPress
In reply to: WordPress custom post type and checkboxesI had the same problem. I ended up getting it to work doing something messy like this:
if($_POST["checkbox"] == "on") { $checkbox = "on"; } else { $checkbox = "off"; } update_post_meta($post->ID, "checkbox", $checkbox);