Digital experiences for all disciplines
New Landing › How can we help? › Themeforest Theme Support › Dante › Promo Bar in the middle of the Page or Shortcode
New Landing › How can we help? › Themeforest Theme Support › Dante › Promo Bar in the middle of the Page or Shortcode
- This topic has 9 replies, 2 voices, and was last updated 9 years by Mohammad – SUPPORT.
-
Posted in: Dante
-
May 26, 2015 at 7:42 pm #178615
Hey Swift Ideas,
Is there a shortcode for the promobar? I’d like to have it right after Revolution slider. The slider buttons are tough to position and are a little finicky on mobile devices.
I was wondering if there’s a way to recreate the properties or, call on the “promo bar” in the middle of the page?
Thanks guys
Attachments:
You must be logged in to view attached files.May 27, 2015 at 6:01 am #178679Hi,
Please paste this code at functions.php of child theme to create promo shortcode.<?php function sf_promo_bar(){?> <div id="base-promo" class="footer-promo-<?php echo $footer_promo_bar_type; ?>"> <?php if ($footer_promo_bar_type == "button") { ?> <p><?php echo do_shortcode($footer_promo_bar_text); ?></p> <a href="<?php echo $footer_promo_bar_button_link; ?>" target="<?php echo $footer_promo_bar_button_target; ?>" class="sf-button dropshadow <?php echo $footer_promo_bar_button_color; ?>"><?php echo $footer_promo_bar_button_text; ?></a> <?php } else if ($footer_promo_bar_type == "arrow") { ?> <a href="<?php echo $footer_promo_bar_button_link; ?>" target="<?php echo $footer_promo_bar_button_target; ?>"><?php echo do_shortcode($footer_promo_bar_text); ?><i class="ss-navigateright"></i></a> <?php } else { ?> <a href="<?php echo $footer_promo_bar_button_link; ?>" target="<?php echo $footer_promo_bar_button_target; ?>"><?php echo do_shortcode($footer_promo_bar_text); ?></a> <?php } ?> <!--// CLOSE #base-promo //--> </div> <?php } add_shortcode('promo_bar','sf_promo_bar'); ?>
Now you can use this shortcode [promo_bar]
Thanks
MohammadMay 27, 2015 at 12:34 pm #178829Hey Mohammad,
I followed your steps but it didn’t work.
It just some empty space below the menu when I used the short code after the slider
May 27, 2015 at 12:49 pm #178832Hi,
Please remove last code and use this new code:-<?php function sf_promo_bar(){ $options = get_option('sf_dante_options'); $enable_backtotop = $enable_footer_promo_bar = $options['enable_footer_promo_bar']; $footer_promo_bar_type = $options['footer_promo_bar_type']; $footer_promo_bar_text = __($options['footer_promo_bar_text'], "swiftframework"); $footer_promo_bar_button_color = $options['footer_promo_bar_button_color']; $footer_promo_bar_button_text = __($options['footer_promo_bar_button_text'], "swiftframework"); $footer_promo_bar_button_link = __($options['footer_promo_bar_button_link'], "swiftframework"); $footer_promo_bar_button_target = $options['footer_promo_bar_button_target']; ?> <div id="base-promo" class="footer-promo-<?php echo $footer_promo_bar_type; ?>"> <?php if ($footer_promo_bar_type == "button") { ?> <p><?php echo do_shortcode($footer_promo_bar_text); ?></p> <a href="<?php echo $footer_promo_bar_button_link; ?>" target="<?php echo $footer_promo_bar_button_target; ?>" class="sf-button dropshadow <?php echo $footer_promo_bar_button_color; ?>"><?php echo $footer_promo_bar_button_text; ?></a> <?php } else if ($footer_promo_bar_type == "arrow") { ?> <a href="<?php echo $footer_promo_bar_button_link; ?>" target="<?php echo $footer_promo_bar_button_target; ?>"><?php echo do_shortcode($footer_promo_bar_text); ?><i class="ss-navigateright"></i></a> <?php } else { ?> <a href="<?php echo $footer_promo_bar_button_link; ?>" target="<?php echo $footer_promo_bar_button_target; ?>"><?php echo do_shortcode($footer_promo_bar_text); ?></a> <?php } ?> <!--// CLOSE #base-promo //--> </div> <?php } add_shortcode('promo_bar','sf_promo_bar'); ?>
Thanks
MohammadMay 27, 2015 at 12:59 pm #178837Thank you for working with me on this.
This time the bar showed up but still positioned below the menu bar. I’ve attached a picture.Attachments:
You must be logged in to view attached files.May 27, 2015 at 1:06 pm #178844Hi,
Have you removed the promo code at page?
Thanks
MohammadMay 27, 2015 at 1:07 pm #178846Yes, I did
Would you like to place it back?
May 27, 2015 at 2:51 pm #178880Hi,
Yes i want to see promo bar.
Thanks
MohammadMay 27, 2015 at 6:01 pm #178916There you go Mohammad, you can see the promo bar on the help/retailers page (link: https://vinchaylabs.com/help/retailers/)
May 28, 2015 at 4:13 am #178978Hi,
Where did you insert the promo bar shortcode? I need login detail to check.Thanks
Mohammad -
Posted in: Dante
You must be logged in and have valid license to reply to this topic.