Hi William,
You mean the target blank attribute for links? If yes, then you have to toggle on the New Tab
option. New tab is always equal to _blank target.
But with the iframe as a target, it’s not possible with the current button element. So as temporary workaround, please add this code to Theme Options > JS (just once)
jQuery ( function($) {
$('.product_target_iframe').attr('target', 'iframe_example');
} );
Then simply inspect each of your button and go to Customize section and add product_target_iframe
to the class input field.
Then from now on, any button with class product_target_iframe
will automatically change the target to iframe_example
(eg. target="iframe_example"
)
BUT, these aren’t going to work either, it’s because your page design has nested iframe which will prevent this to work.
This main page https://easystartup.net/products-services/ has iframe for https://easystartup.net/web-design/, which then has iframe for https://easystartup.net/product/web-design/
Implement that changes and load this https://easystartup.net/web-design/ and test the buttons, it will work since it only has single iframe. And this is true even with standard link codes (eg.<a></a>
) and iframes. This restriction isn’t theme or button’s limitation ( I tried it with simple HTML contents ).
About the hamburger button, please add this code to your child theme’s functions.php
function x_ethos_entry_top_navigation() {
if ( x_is_portfolio_item() ) {
$link = x_get_parent_portfolio_link();
} elseif ( x_is_product() ) {
return false; //Don't display it
}
$title = esc_attr( __( 'See All Posts', '__x__' ) );
?>
<div class="entry-top-navigation">
<a href="<?php echo $link; ?>" class="entry-parent" title="<?php $title; ?>"><i class="x-icon-th" data-x-icon-s=""></i></a>
<?php x_entry_navigation(); ?>
</div>
<?php
}
And for centering the image, please add this CSS to Theme Options > CSS
.single-product div.product .images {
text-align: center !important;
}
Hope these help.