dame22
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact for WordPress] Insert Links no longer works with CC pluginHi,
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.
Forum: Plugins
In reply to: [Constant Contact for WordPress] Plugin Breaks Hyperlink FunctionHi,
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.
Forum: Plugins
In reply to: [WordPress Conditional Content] Logical operatorsI 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; } }Forum: Plugins
In reply to: Disqus inheriting colors from where?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