Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    I have the problem and I found out the one causing this problem is the Add Event button on the wordpress editor. So as a workaround, I unchecked the Enable EventSpot Integration option on Constant Contact and the insert url was working again.

    I hope they will have a fix for this soon.

    Hi,

    I have the problem and I found out the one causing this problem is the Add Event button on the wordpress editor. So as a workaround, I unchecked the Enable EventSpot Integration option on Constant Contact and the insert url was working again.

    I hope they will have a fix for this soon.

    I found a solution to this problem.

    Modify your class-core.php file on around line 74. Change the whole condition_query_string to:

    private function condition_query_string( $value, $match ) {
    	if( strstr( $value, ':' ) ){
    		list( $qs_key, $qs_value ) = explode( ':', $value );
    
    		$match = ( empty( $match ) ) ? 'exact' : $match;
    
    		# Check if GET value matches given value
    		if ( ! isset( $_GET[ $qs_key ] ) || false === $this->check_value( $_GET[ $qs_key ], $qs_value, $match ) )
    			return false;
    
    		return true;
    	}
    	elseif( strstr( $value, '!' ) ){
    		list( $qs_key, $qs_value ) = explode( '!', $value );
    
    		$match = ( empty( $match ) ) ? 'exact' : $match;
    
    		# Check if GET value doesn't match given value
    		if ( ! isset( $_GET[ $qs_key ] ) || false === $this->check_value( $_GET[ $qs_key ], $qs_value, $match ) )
    			return true;
    
    		return false;
    	}
    	else{
    		return false;
    	}
    }

    add this to your css file

    body.dark #global-nav li.active a { color: #888 !important; }

    change the color to your desired one, this solved my problem

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