Hi again,
Please open class-wpml.php file located in /wp-content/plugins/cornerstone/includes/classes/components/ directory. On line # 18, replace this line:
add_filter( 'the_permalink', array( $this, 'filter_permalink' ) );
With this:
//add_filter( 'the_permalink', array( $this, 'filter_permalink' ) );
Adding // before the line of code will comment out the code and it will not be executed. To learn more about PHP comments please see http://php.net/manual/en/language.basic-syntax.comments.php.
Please note that it’s just a work around, your code changes will be overwritten when an Cornerstone update is released.
Regarding your other query, I couldn’t find your question in this thread, are you referring to another thread? If you want to remove the dark overlay from your post slider then please add the following code in the Theme Options > CSS:
.x-post-slider-entry>a {
background-color: transparent !important;
}
Hope this helps!