AbanteCart Community
Shopping Cart Operations => Support => General Support => Topic started by: buddahboy on November 20, 2013, 09:57:12 AM
-
Greetings,
My returns and refunds and privacy popup pages that are required during registration (privacy) checkout (returns policy) have double titles on them - screenshot attached. I would prefer to be rid of the upper one actually. Maybe someone who has had this problem can assist me - could not find the answer.
Thank you,
Ron
-
anybody? been lookin' around makes me nutz - as i'm sure everyone can relate to!
Firebug - this is the offending code but I don't know where it would be in order to correct.
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="privacyPolicyModalLabel">Privacy Policy</h3>
</div>
Thanks
Ronn
-
it's a bootstrap's modal with external load. You can find js-script for this on html page.
-
Thank you very much - but if I may ask, could you please elaborate on that some? I could not discover where to make that correction.
Thank you very much
Ron
-
Hello There Abolabo - would you be kind enough to tell me where to find the info I need to change? I just can't find it and would really like to get it cleared up - getting ready to make the site live finally.
Thanks much and all the best
Ron
-
first title you can find in public_html/storefront/view/default_html5/template/pages/account/create.tpl see line 133
after click you call js common function openModalRemote (line 114), second parameter is url to response controllerpublic_html/storefront/controller/responses/content/content.php it use it's own tpl public_html/storefront/view/default_html5/template/responses/content/content.tpl. Nut it's a common tpl for most of content pages. You need to decide what you want to change, tpl for page or tpl for response controller. ;)
-
Thank you very much - on the privacy page I did the following and it solved the double heading.
<!--<h3 id="privacyPolicyModalLabel"><?php echo $text_agree_href_text; ?></h3>-->
I also need to find the tpl file that will include the popup for refund or return (don't remember what it's called in default) but it's during checkout
Found the below label which is the return policy I need to fix like the privacy above but it did not fix the problem for the return policy popup:
<h3 id="returnPolicyModalLabel"><?php echo $text_accept_agree_href_link; ?></h3>
Found this in in confirm.tpl and payment.tpl -- this checkbox is located on the "Payment Information" page.
Can you please help me identify which file would work for me like the privacy policy did?
using 1.1.7 and html5 template
Thank you a bunch
Ron
-
public_html/storefront/view/default_html5/template/pages/checkout/payment.buttons.tpl
public_html/storefront/view/default_html5/template/pages/checkout/confirm.tpl ?
-
That was it Dmitri, you're a life saver!
public_html/storefront/view/default_html5/template/pages/checkout/payment.buttons.tpl
coded out the following (in case anyone else has this problem):
<!--<h3 id="returnPolicyModalLabel"><?php echo $text_agree_href_text; ?></h3>-->
Thank you much for the great support, you've been and are very helpful indeed
All the best,
Ron