admin管理员组文章数量:1287810
I want to change my download button for non logged in users. Instead of the download button I want to show a custom HTML code with message to login/register. The below code is hiding the button but the injection of the new HTML code is not working.
<?php if (!is_user_logged_in()) : ?>
<style>
.product-purchase-box{
display: none;
}
</style>
<script>
<p><a href=";>LOGIN</a> OR <a href=";>REGISTER</a> FOR FREE TO ACCESS THIS AND ALL 1 MILLION+ DESIGNS</p>
</script>
<?php endif; ?>
Target Page: ezcliparts/downloads/seamless-geometric-digital-paper-pattern-abstract-hand-drawn-background
Original Download Button Output:
<div class="cart-box row product-purchase-box" style="user-select: auto;">
<div class="col-md-12 paading-left-0 product-price" style="user-select: auto;">
<h3 style="user-select: auto;"><span class="edd_price" id="edd_price_4701" style="user-select: auto;">$0.00</span></h3> </div>
<div class="product_widget_inside" style="user-select: auto;"> <a href="#" class="edd-free-downloads-direct-download-link button white edd-submit" data-download-id="4701" style="user-select: auto;">Download</a> </div>
</div>
I created the website with the help of a developer but the contract is over so I have to do it myself now.
I want to change my download button for non logged in users. Instead of the download button I want to show a custom HTML code with message to login/register. The below code is hiding the button but the injection of the new HTML code is not working.
<?php if (!is_user_logged_in()) : ?>
<style>
.product-purchase-box{
display: none;
}
</style>
<script>
<p><a href="https://ezcliparts/login">LOGIN</a> OR <a href="https://ezcliparts/register">REGISTER</a> FOR FREE TO ACCESS THIS AND ALL 1 MILLION+ DESIGNS</p>
</script>
<?php endif; ?>
Target Page: ezcliparts/downloads/seamless-geometric-digital-paper-pattern-abstract-hand-drawn-background
Original Download Button Output:
<div class="cart-box row product-purchase-box" style="user-select: auto;">
<div class="col-md-12 paading-left-0 product-price" style="user-select: auto;">
<h3 style="user-select: auto;"><span class="edd_price" id="edd_price_4701" style="user-select: auto;">$0.00</span></h3> </div>
<div class="product_widget_inside" style="user-select: auto;"> <a href="#" class="edd-free-downloads-direct-download-link button white edd-submit" data-download-id="4701" style="user-select: auto;">Download</a> </div>
</div>
I created the website with the help of a developer but the contract is over so I have to do it myself now.
Share Improve this question edited Sep 14, 2021 at 16:27 Katherine Elizabeth Kath asked Sep 14, 2021 at 15:42 Katherine Elizabeth KathKatherine Elizabeth Kath 32 bronze badges 2- How is the original download button being output? Also, where are you putting this code? This is PHP, not HTML, so it will not work if you put it into the editor. – Jacob Peattie Commented Sep 14, 2021 at 16:16
- I am adding the PHP code in "header.php" file in my themes directory. And for reference I am adding The Original HTML code of the target class in my question. – Katherine Elizabeth Kath Commented Sep 14, 2021 at 16:21
1 Answer
Reset to default 0One way to handle this with the approach you've taken is to expand on the PHP code for the check to see if the user is logged in like so:
<?php if (!is_user_logged_in()) : ?>
<style>
.product-purchase-box{display: none;}
.linktologin{display: inline;}
</style>
<?php else : ?>
<style>
.product-purchase-box{display: inline;}
.linktologin{display: none;}
</style>
<?php endif; ?>
Then, remove the HTML code for the login link within the <script>
tags and add it to where you have the button HTML with the class .linktologin
(or whatever you chose). Something like this:
<div class="cart-box row product-purchase-box" style="user-select: auto;">
<div class="col-md-12 paading-left-0 product-price" style="user-select: auto;">
<h3 style="user-select: auto;"><span class="edd_price" id="edd_price_4701" style="user-select: auto;">$0.00</span></h3>
</div>
<div class="product_widget_inside" style="user-select: auto;"> <a href="#" class="edd-free-downloads-direct-download-link button white edd-submit" data-download-id="4701" style="user-select: auto;">Download</a></div>
</div>
<div class="linktologin">
<a href="https://ezcliparts/login">LOGIN</a> OR <a href="https://ezcliparts/register">REGISTER</a> FOR FREE TO ACCESS THIS AND ALL 1 MILLION+ DESIGNS
</div>
本文标签: functionsAdding HTML Code to Replace Text in PHP
版权声明:本文标题:functions - Adding HTML Code to Replace Text in PHP 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741320148a2372156.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论