Hello. I installed the following plug-in to be able to create columns of information on my pages:
Column Shortcodes
I am using the plug-in as instructed and the last column never works. In searching the support for the plug-in, it appears that some themes have similar features which will interfere with the plug-in:
My existing theme uses the same shortcodes, how can I solve this?
You can prefix the shortcode by placing the following in your functions.php. Problem solved =)
add_filter( ‘cpsh_prefix’, ‘set_shortcode_prefix’ );
function set_shortcode_prefix() {
return ‘myprefix_’; // edit this part if needed
}
Can you tell me if this is the case with Dante and if you have a recommended way to add columns?
I have the most recent version of Dante. Thank you!