theatereleven
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] White screen using with WordPress 3.8.1Marking this as resolved – both sites still going without the white screen. Thank you Decloverlycorp!
Forum: Plugins
In reply to: [WP Super Cache] White screen using with WordPress 3.8.1Okay…so far so good. I followed decloverlycorp’s example above for default settings, and I haven’t hit the white screen of death yet. I have it running on two 3.8.1 sites, and so far so good.
Time will tell. I would love to know how to trouble shoot this better, and figure out what could cause the white screen.
Forum: Plugins
In reply to: [WP Super Cache] White screen using with WordPress 3.8.1And as it did before….BOOM. White screen of death. This is a brand new, uncomplicated WordPress site. I’m using normal plugins like ACF, WordFence, Google Analyticator, Soliloquy Light, CF7.
I have to go delete the caching php files created by the plugin in the WP-Content folder and then restart Apache before the site will even let me into the admin to deactivate the plugin.
It’s too bad…this plugin sounds nice in theory.
Forum: Plugins
In reply to: [WP Super Cache] White screen using with WordPress 3.8.1I’ve re-enabled the plugin to test again. Reset to defaults, and then checked off just a few of the recommended settings. We’ll see how it goes…
Forum: Fixing WordPress
In reply to: Problem with tagged pages not showing.This code in fuctions.php worked:
// add tag support to pages function tags_support_all() { register_taxonomy_for_object_type('post_tag', 'page'); } // ensure all tags are included in queries function tags_support_query($wp_query) { if ($wp_query->get('tag')) $wp_query->set('page_type', 'any'); } // tag hooks add_action('init', 'tags_support_all'); add_action('pre_get_posts', 'tags_support_query'); // allows the tags to work in the normal category display add_filter('pre_get_posts', 'wpse_pre_get_posts'); function wpse_pre_get_posts($q) { if( $q->is_main_query() && $q->is_tag() ) { $q->set('post_type', array('post','page') ); } }
Ok, thanks.
Thanks Alin. So that makes sense…now I’m wondering if I could dedicate a page to a certain Analytics profile. Basically, I want a user with subscriber level access be able to sign in, see their site page and amongst the details, view their analytics. Is that possible?
Forum: Fixing WordPress
In reply to: How to display certain fields of taxonomy?Here’s my CPT and taxonomy:
/** Cars **/ add_action( 'init', 'pre_owned_cars' ); function pre_owned_cars() { register_post_type( 'pre-owned-cars', array( 'labels' => array( 'name' => 'Cars', 'singular_name' => 'Car', ), 'description' => 'Add a car or vehicle.', 'public' => true, 'supports' => array( 'title', 'editor',) )); } // add tags to pages add_action( 'init', 'register_taxonomy_types' ); function register_taxonomy_types() { $labels = array( 'name' => _x( 'Types', 'types' ), 'singular_name' => _x( 'Type', 'types' ), 'search_items' => _x( 'Search Types', 'types' ), 'popular_items' => _x( 'Popular Types', 'types' ), 'all_items' => _x( 'All Types', 'types' ), 'parent_item' => _x( 'Parent Type', 'types' ), 'parent_item_colon' => _x( 'Parent Type:', 'types' ), 'edit_item' => _x( 'Edit Type', 'types' ), 'update_item' => _x( 'Update Type', 'types' ), 'add_new_item' => _x( 'Add New Type', 'types' ), 'new_item_name' => _x( 'New Type', 'types' ), 'separate_items_with_commas' => _x( 'Separate types with commas', 'types' ), 'add_or_remove_items' => _x( 'Add or remove Types', 'types' ), 'choose_from_most_used' => _x( 'Choose from most used Types', 'types' ), 'menu_name' => _x( 'Types', 'types' ), ); $args = array( 'labels' => $labels, 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => true, 'show_admin_column' => false, 'hierarchical' => true, 'rewrite' => array( 'slug' => 'used-cars', 'with_front' => true, 'hierarchical' => true ), 'query_var' => true ); register_taxonomy( 'types', array('pre-owned-cars'), $args ); }
Forum: Reviews
In reply to: [LightStart - Maintenance Mode, Coming Soon and Landing Page Builder] SPAM!I love the plugin – use it all of the time. If anyone is reading this, I’d not pay too much attention to this negative review.
Forum: Reviews
In reply to: [Responsive Video Embeds] Works perfectly with YouTube and VimeoUpdate: just tried this on a new WP 3.7 site. Works beautifully!
Forum: Plugins
In reply to: [Simple Lightbox] Link single ACF image to lightbox?Thanks man….that’s a little over my head. I’m not a PHP guy, just know how to place ACF fields and such. =) You can close this out. I’ll just keep looking.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Create Lightbox for ACF ImageThanks, but I’m not doing galleries.
I have an Advanced Custom Field that is set to image, and i’m inserting it into my page template like this:
<img src=”<?php the_field(‘bio_pic_one’); ?>”>
And I’d like to somehow add a light box to that. Is it possible with this plugin?
Thanks – I looked at a lot of plugins, including Duplicator, but went with the one I purchased because it lets me go back and forth between my dev and production sites, keeping databases in sync.
Everything works fine. This problem with with the plugin – I’ve ditched this plugin for it’s lack luster mobile performance and Firefox desktop problems as well.
Forum: Reviews
In reply to: [MC4WP: Mailchimp for WordPress] Plugin is slick…recommendedDude – I appreciate that! I’ll be building the new site in the next couple weeks, and will get back to you on the status. Thanks man.
Forum: Reviews
In reply to: [MC4WP: Mailchimp for WordPress] Plugin is slick…recommendedThanks Danny – the mailchimp emails never came -even after 24 hours. So I guess something’s up on their end.
But…I’m setting up another WordPress site, so I’ll try your Pro plugin on that one and see if anything changes. Thanks for clarifying – I do like your plugin’s functionality!