Tagged: x
-
AuthorPosts
-
April 25, 2016 at 12:30 am #898098
ShaftdiggyParticipantIm trying to add the ssl secure logo to my site. I’ve seen where you’ve stated to paste the information before the /head section on the functions.php page of child theme but I don’t see the /head or /body tags in the functions.php page.
April 25, 2016 at 6:35 am #898480
ZeshanMemberHi there,
Thanks for writing in!
To assist you with this, we’ll first need you to provide us with your URL as stated on the forum entrance page. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you.
Thanks!
April 25, 2016 at 8:50 am #898611
ShaftdiggyParticipantApril 25, 2016 at 10:20 am #898779
ShaftdiggyParticipantI’m also trying to add logos to my credit card checkout using this code:
.woocommerce-checkout .checkout .payment_methods label img {
display: block !important;
}I can’t get anything to save in the new custom css editor (its been very difficult to use)
April 25, 2016 at 6:47 pm #899477
JadeModeratorHi there,
Would you mind clarifying what kind of SSL logo and where do you want it placed on your site?
To add a logo to your checkout page, please add this in your CSS customizer:
.woocommerce-checkout form .payment_methods li.payment_method_stripe:before { content: "url(URL_TO_THE_IMAGE)"; }Hope this helps.
April 28, 2016 at 1:51 pm #904545
ShaftdiggyParticipantI tried adding the code but it didn’t work.
it is the Comodo SSL Trust logo it states to past this before the </head> tag on the page you want it:
<script type=”text/javascript”> //<![CDATA[
var tlJsHost = ((window.location.protocol == “https:”) ? “https://secure.comodo.com/” : “http://www.trustlogo.com/”);
document.write(unescape(“%3Cscript src='” + tlJsHost + “trustlogo/javascript/trustlogo.js’ type=’text/javascript’%3E%3C/script%3E”));
//]]>
</script>and this before the </body> tag
<script language=”JavaScript” type=”text/javascript”>
TrustLogo(“http://jazzyowlshop.com/wp-content/uploads/2016/04/jazzyowlshop_2016-04-28_18-26-34.png”, “CL1”, “none”);
</script>
Positive SSLApril 29, 2016 at 4:59 am #905417
Paul RModeratorHi,
You can add this in your child theme’s functions.php file
function before_head() { ?> ...ADD FIRST CODE HERE... <?php } add_action( 'wp_head', 'before_head', 99999 ); function before_body() { ?> ...ADD SECOND CODE HERE... <?php } add_action( 'wp_footer', 'before_body', 99999 );Hope that helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-898098 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
