Viewing 12 replies - 1 through 12 (of 12 total)
  • mother.of.code

    (@imazed)

    The Mother of Code

    Hi! I’m not seeing your screenshot, could you possibly add the link to the (online) file? I’d be happy to take a look.

    Thread Starter xps20

    (@corneliusw)

    You can view the page here

    Thread Starter xps20

    (@corneliusw)

    Showing as blank for some reason, page with the issue is here:

    http://eatuberbacon.com/newsletter/

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hi corneliusw,

    I checked your website using Google Chrome and was not able to see any grey boxes. Can you let me know which web browser you are using. If you could share any screenshots via DropBox or http://imgur.com/ it would be helpful.

    Thread Starter xps20

    (@corneliusw)

    I see them on chrome and firefox.

    http://awesomescreenshot.com/05a4xjnf7a

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hello corneliusw,

    Thank you for sharing the screenshot. I also checked your source code. The 2 boxes are caused due to additional “" tag around your form code.

    Can you please share the code in your form as well as the contents in the editor of your page http://eatuberbacon.com/newsletter/.

    Thread Starter xps20

    (@corneliusw)

    Editing mailchimp-for-wp/mailchimp-for-wp.php (active)

    <?php
    /*
    Plugin Name: MailChimp for WordPress Lite
    Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm-medium=mailchimp-for-wp&utm_campaign=plugin-page
    Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
    Version: 2.3.2
    Author: Ibericode
    Author URI: http://ibericode.com/
    Text Domain: mailchimp-for-wp
    Domain Path: /languages
    License: GPL v3
    GitHub Plugin URI: https://github.com/ibericode/mailchimp-for-wordpress
    
    MailChimp for WordPress
    Copyright (C) 2012-2015, Danny van Kooten, hi@dannyvankooten.com
    
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
    */
    
    // Prevent direct file access
    if( ! defined( 'ABSPATH' ) ) {
    	header( 'Status: 403 Forbidden' );
    	header( 'HTTP/1.1 403 Forbidden' );
    	exit;
    }
    
    /**
    * Loads the MailChimp for WP plugin files
    *
    * @return boolean True if the plugin files were loaded, false otherwise.
    */
    function mc4wp_load_plugin() {
    
    	// don't load plugin if user has the premium version installed and activated
    	if( defined( 'MC4WP_VERSION' ) ) {
    		return false;
    	}
    
    	// bootstrap the lite plugin
    	define( 'MC4WP_LITE_VERSION', '2.3.2' );
    	define( 'MC4WP_LITE_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
    	define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
    	define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );
    
    	require_once MC4WP_LITE_PLUGIN_DIR . 'vendor/autoload_52.php';
    	require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/general.php';
    	require_once MC4WP_LITE_PLUGIN_DIR . 'includes/functions/template.php';
    
    	// Initialize the plugin and store an instance in the global scope
    	MC4WP_Lite::init();
    	$GLOBALS['mc4wp'] = MC4WP_Lite::instance();
    
    	if( is_admin()
    	    && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
    		new MC4WP_Lite_Admin();
    	}
    
    	return true;
    }
    
    add_action( 'plugins_loaded', 'mc4wp_load_plugin', 20 );
    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hi corneliusw,
    I did not meant the plugin code. What I meant is to go to your WordPress Dashboard > Edit Screen of the page “http://eatuberbacon.com/newsletter/&#8221; and copy and share the content you have there. You would need to copy the code after switching to text mode and not the visual.

    Thread Starter xps20

    (@corneliusw)

    I figured that’s what you meant but it was only a shortcode:

    <code>[mc4wp_form]</code>

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hey corneliusw,

    Can you please try removing the ‘' & ‘ tags and just keep the shortcode itself. Please let me know how it goes.

    Thread Starter xps20

    (@corneliusw)

    ha that was simple. thanks!

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hey corneliusw,

    It seems due to editor restrictions, when I entered < code >, it was removed. Anyways I’m glad the issue is resolved.

    We would love to have your opinion of our plugin and support in our Review section at https://wordpress.org/support/view/plugin-reviews/mailchimp-for-wp whenever it’s convenient for you.

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘Help fixing CSS issues’ is closed to new replies.