Digital experiences for all disciplines
Forum Replies Created
-
-
November 20, 2015 at 2:36 pm in reply to: Editing "Email Customer Care", "Shipping Information", etc. on checkout page #230272This reply has been marked as private.This reply has been marked as private.November 19, 2015 at 12:34 pm in reply to: Editing "Email Customer Care", "Shipping Information", etc. on checkout page #229890This reply has been marked as private.November 18, 2015 at 6:39 pm in reply to: Editing "Email Customer Care", "Shipping Information", etc. on checkout page #229749
Hi Mohammad,
I just tried and unfortunately that still doesn’t work, I am still unable to click on “Customer Care”
Sarah
November 18, 2015 at 3:52 pm in reply to: Editing "Email Customer Care", "Shipping Information", etc. on checkout page #229671Thank you, that kind of worked but now there’s a multi-part issue:
If I insert it as you have it (25%), it now doesn’t let me click on the customer care modal link.
If I insert it as at 50% instead, I can click on the customer care modal link, but now the screens that pop up when you click customer care, delivery information, etc., appear very low on the page. Any suggestions?
Thank you for all your help!
This reply has been marked as private.Never mind, I figured out how to do it in a non-intuitive way. I dragged the times at the bottom of the settings to go past the blue dotted line on the revolution slider editor page
Just to make a follow-up note: the elements on the home page revolution slider in the Neighborhood Demo website don’t disappear, and that’s the exact setting I’m looking for, just not sure how to do it
November 18, 2015 at 2:05 pm in reply to: Editing "Email Customer Care", "Shipping Information", etc. on checkout page #229632Hi Mohammad,
Please take a look here, I just put it up. And sorry, the code is slightly different than what I posted above. It’s the code shown below
function sf_woo_help_bar() {
$options = get_option(‘sf_neighborhood_options’);
$help_bar_text = __($options[‘help_bar_text’], ‘swiftframework’);
$email_modal = __($options[’email_modal’], ‘swiftframework’);
$shipping_modal = __($options[‘shipping_modal’], ‘swiftframework’);
$returns_modal = __($options[‘returns_modal’], ‘swiftframework’);
$faqs_modal = __($options[‘faqs_modal’], ‘swiftframework’);
?>
<div class=”help-bar clearfix”>
<span><?php echo do_shortcode($help_bar_text); ?></span>- <?php _e(“Email customer care”, “swiftframework”); ?>
- <?php _e(“Delivery information”, “swiftframework”); ?>
- <?php _e(“Changes to order”, “swiftframework”); ?>
- <?php _e(“F.A.Q.’s”, “swiftframework”); ?>
</div>
<div id=”email-form” class=”modal fade” tabindex=”-1″ role=”dialog” aria-labelledby=”email-form-modal” aria-hidden=”true”>
<div class=”modal-dialog”>
<div class=”modal-content”>
<div class=”modal-header”>
<button type=”button” class=”close” data-dismiss=”modal” aria-hidden=”true”><i class=”ss-delete”></i></button>
<h3 id=”email-form-modal”><?php _e(“Email customer care”, “swiftframework”); ?></h3>
</div>
<div class=”modal-body”>
<?php echo do_shortcode($options[’email_modal’]); ?>
</div>
</div>
</div>
</div><div id=”shipping-information” class=”modal fade” tabindex=”-1″ role=”dialog” aria-labelledby=”shipping-modal” aria-hidden=”true”>
<div class=”modal-dialog”>
<div class=”modal-content”>
<div class=”modal-header”>
<button type=”button” class=”close” data-dismiss=”modal” aria-hidden=”true”><i class=”ss-delete”></i></button>
<h3 id=”shipping-modal”><?php _e(“Shipping information”, “swiftframework”); ?></h3>
</div>
<div class=”modal-body”>
<?php echo do_shortcode($options[‘shipping_modal’]); ?>
</div>
</div>
</div>
</div><div id=”returns-exchange” class=”modal fade” tabindex=”-1″ role=”dialog” aria-labelledby=”returns-modal” aria-hidden=”true”>
<div class=”modal-dialog”>
<div class=”modal-content”>
<div class=”modal-header”>
<button type=”button” class=”close” data-dismiss=”modal” aria-hidden=”true”><i class=”ss-delete”></i></button>
<h3 id=”returns-modal”><?php _e(“Returns & exchange”, “swiftframework”); ?></h3>
</div>
<div class=”modal-body”>
<?php echo do_shortcode($options[‘returns_modal’]); ?>
</div>
</div>
</div>
</div><div id=”faqs” class=”modal fade” tabindex=”-1″ role=”dialog” aria-labelledby=”faqs-modal” aria-hidden=”true”>
<div class=”modal-dialog”>
<div class=”modal-content”>
<div class=”modal-header”>
<button type=”button” class=”close” data-dismiss=”modal” aria-hidden=”true”><i class=”ss-delete”></i></button>
<h3 id=”faqs-modal”><?php _e(“F.A.Q.’s”, “swiftframework”); ?></h3>
</div>
<div class=”modal-body”>
<?php echo do_shortcode($options[‘faqs_modal’]); ?>
</div>
</div>
</div>
</div><?php }
?>November 18, 2015 at 12:16 pm in reply to: Editing "Email Customer Care", "Shipping Information", etc. on checkout page #229610This reply has been marked as private.Hi Mohammad,
That worked, thank you! 🙂
Sarah
Thank you David. Is there more granularity with the color choice than that? For example, can I use a hex code?
This reply has been marked as private.Hi David,
Thank you for the help. To clarify, is this supposed to change the color of the text in the attached screenshot?
If so, I put this code in my custom css but for some reason it’s not working. The exact code I put was:
.woocommerce .wc-out-of-stock-badge {
color: #efa897!important;
}Best,
SarahAttachments:
You must be logged in to view attached files.Hello,
I’d like to change the color of “Out of stock” on the product page. Is there a way to do this?
The above code worked for me to change the text 🙂
Best,
Sarah -