Change icon order in toggle without changing code
-
John,
I wanted to move the icon in the toggle to the end instead of the beginning. So, I can change one line in shortcodes.php
from
$r = ‘<div class=”arconix-toggle-wrap’. $css . ‘”>’ . ‘<div class=”arconix-toggle-title ‘ . $load . ‘”>’ . $icon . $title . ‘</div>’;
to
$r = ‘<div class=”arconix-toggle-wrap’. $css . ‘”>’ . ‘<div class=”arconix-toggle-title ‘ . $load . ‘”>’ . $title . $icon . ‘</div>’;
But is there a way to do this without changing plugin code? Is there a PhP function I should be writing?
Thanks.
- The topic ‘Change icon order in toggle without changing code’ is closed to new replies.