(2014-11-18, 09:29:33)denis Wrote: Hello, I am using the plugin simple-contact.
Changed manually: $sc_to = 'name@mail.com';
Can I use the plugin slogan, that would change this line -
$sc_to = 'name@mail.com' ??
For example:
slogan-name-goes-here = name@mail.com
$sc_to = <?php get_slogan('slogan-name-goes-here');?>
or
$sc_to = '(%slogan-name-goes-here%)';
will it work?
As I can see $sc_to is a PHP variable inside PHP code. Try using return_slogan function:
PHP Code:
$sc_to = return_slogan('slogan-name');