Curtis Hays
Forum Replies Created
-
<section class="author_index_<?php echo esc_attr($index); ?> authorbox-pad elementor-section elementor-inner-section elementor-section-boxed elementor-section-height-default" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-widget elementor-widget-image" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<?php echo $avatar_html; // avatar markup already escaped by WP ?>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-66 elementor-inner-column elementor-element" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-widget elementor-widget-heading" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">
<?php if (!empty($user_url)) : ?>
<a href="<?php echo esc_url($user_url); ?>"><?php echo esc_html($display_name); ?></a>
<?php else : ?>
<?php echo esc_html($display_name); ?>
<?php endif; ?>
</h2>
</div>
</div>
<div class="elementor-element elementor-widget elementor-widget-text-editor" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p class="authorbox-meta">
<?php if (!empty($author_title)) : ?>
<?php echo wp_kses_post($author_title); ?><br>
<?php endif; ?>
<?php if (!empty($author_phone)) :
$digits = preg_replace('/\D+/', '', $author_phone);
?>
<a href="tel:+1<?php echo esc_attr($digits); ?>" class="authorbox-phone"><?php echo esc_html($author_phone); ?></a><br>
<?php endif; ?>
<?php if (!empty($author_email)) : ?>
<a href="mailto:<?php echo esc_attr($author_email); ?>"><?php echo esc_html($author_email); ?></a>
<?php endif; ?>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<?php endforeach; ?>Forum: Plugins
In reply to: [WooCommerce] Email address field disappeared on checkoutThis also happened to us. Email, Shipping info was missing from the page and customers couldn’t checkout. Disabling bluehost plugin fixed this. Who knows how many orders were lost due to this conflict.
I resolved, the reason we were not seeing the author box is because we needed to enable it on posts in the first option in the settings. Found that now and we can now change authors. Thank you
@jacky_k they are now in General – Features, you can turn xml sitemap on and off.
Then go to Search Appearance – Content Types, Taxonomies, & Archives.
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tabs not displaying content in IE 11I have a table on the Catalog tab and you can see that related products sits over top the of the table.
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tabs not displaying content in IE 11If i change the following css from hidden to visible it displays the tabs in IE but the content container isn’t right, content flows over top.
.mk-tabs-pane {
overflow: hidden;
height: 0;
}Something now with the display:block vs inline?
<div class=”mk-tabs-pane panel entry-content wc-tab” id=”tab-drawing” style=”display: block;”>