I made changes to both codes and it does not change when i refresh in t4-section-7 or t4-section-8
This is what I want and changed in t4section.php :
$decor = '<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="4" cy="4" r="4" fill="#5E17EB"></circle>
<circle cx="4" cy="16" r="4" fill="#2196F3"></circle>
<circle cx="16" cy="4" r="4" fill="#2196F3"></circle>
<circle cx="16" cy="16" r="4" fill="#5E17EB"></circle>
</svg>';
if($subColor == 'white') {
$decor = '<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="4" cy="4" r="4" fill="5e17eb"/>
<circle cx="4" cy="16" r="4" fill="#2196F3"/>
<circle cx="16" cy="4" r="4" fill="#2196F3"/>
<circle cx="16" cy="16" r="4" fill="5e17eb"/>
</svg>';
}
This is the original and is still showing:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="4" cy="4" r="4" fill="#3F3836"></circle>
<circle cx="4" cy="16" r="4" fill="#EC4E4F"></circle>
<circle cx="16" cy="4" r="4" fill="#EC4E4F"></circle>
<circle cx="16" cy="16" r="4" fill="#3F3836"></circle>
</svg>
Is there any other place that needs to be changed for section-7 and section-8?
Thanks for your help