Christian Bulota
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Menu Cart] Error messages when updating to the latest Woocommerce versionThanks a lot, it works now with your latest update along with the latest Woocommerce version
Hi, yes it seems to work fine now
Hi Mustafa, I followed @mdjbutton’s advice in this thread and rolled back the plugin to the version 31.0.1 which solved the problem for now
Hi Mustafa,
it does this on all items that have PPOM Fields in my store.
here is one example: https://www.kitebud.com.au/product/prolimit-rope-slider-spreader-bar-with-pad/ if you select the PPOM Option it does not add it to the cart.
Can you please share which you field types you use?
What is a field type ?
What is a field group ?
Woocommerce version: Version 7.0.0
PPOM Version Version 32.0.0
Sorry I’ve tried this multiple times, cleared my cache, etc. still not working…
Can you send me step by step instructions on how you achieved this ?
- This reply was modified 2 years, 1 month ago by Christian Bulota.
Thanks for your help and advice, it worked great
Hi @simplysaru
thanks for the quick reply.
I applied the code and it worked and I understand why it’s not there by default.
However, I noticed the Google Pay option is not available in the radio buttons payment options towards the bottom of the page. Is there a way to display Google Pay as a payment option in the checkout page without displaying the button at the top of the page ?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Credit card icons now align verticallyI played around and managed to solve my problem with this code:
#add_payment_method #payment ul.payment_methods li img.stripe-icon, .woocommerce-checkout #payment ul.payment_methods li img.stripe-icon {
width: 100%;
}Is this a correct fix ?
Forum: Plugins
In reply to: [Tawk.To Live Chat] tawk.to widget down ?it works now, I noticed I was logged out of the Tawk.to plugin settings in my WordPress admin dashboard that’s why it wasn’t showing up anymore.
Forum: Plugins
In reply to: [Tawk.To Live Chat] tawk.to widget down ?still not working for me. surprising I don’t find anyone else complaining. https://status.tawk.to/ does not even show any downtime…
Forum: Plugins
In reply to: [Tawk.To Live Chat] tawk.to widget down ?Still not working for me. Tawk.to replied to my email about 1H ago and said they were aware of the problem and working on fixing it.
Forum: Plugins
In reply to: [Tawk.To Live Chat] Twak.to widget not showingI have the same issue and also use Wp-Rocket and Cloudfare. Trying to clear all my caches, de-activate the plugin and re-active it, still not displaying. Any advice ?
Thanks, that seems to work for most cases except when a variable product has one or more variations in stock and other variations on backorder. In this case it does not show the button. If all variations of a variable product are on backorder, then it works just fine.
Hi Riddhi,
Above is my content-Search.php code.
Can you tell me where to add the
<?php echo do_shortcode('[popup_anything id="14292"]'); ?>
in those lines?Also, I tried your code in the search.php between the while loop but there was a syntax error. I think I fixed the error but it doesn’t work either.
<?php /** * The template part for displaying results in search pages. * * Learn more: https://codex.www.ads-software.com/Template_Hierarchy * * @package shaka-pt */ $blog_columns = get_theme_mod( 'blog_columns', 6 ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class( array( 'grid-item', 'col-xs-12', 'col-sm-6', esc_attr( sprintf( 'col-lg-%s', $blog_columns ) ) ) ); ?>> <!-- Featured Image --> <?php if ( has_post_thumbnail() ) : ?> <header class="hentry__header"> <a class="hentry__featured-image" href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( 'post-thumbnail', array( 'class' => 'img-fluid' ) ); ?> </a> </header><!-- .hentry__header --> <?php endif; ?> <!-- Content Box --> <div class="hentry__content entry-content"> <!-- Date --> <a href="<?php the_permalink(); ?>"><time class="hentry__date" datetime="<?php the_time( 'c' ); ?>"><?php echo get_the_date(); ?></time></a> <!-- Author --> <span class="hentry__author"><i class="fa fa-user"></i> <?php echo esc_html__( 'By' , 'shaka-pt' ) . ' ' . get_the_author(); ?></span> <!-- Content --> <?php the_title( sprintf( '<h2 class="hentry__title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?> <p> <?php echo wp_kses_post( get_the_excerpt() ); ?> </p> <p> <a href="<?php echo esc_url( get_permalink() ); ?>" class="more-link"><?php printf( esc_html__( 'Read more %s', 'shaka-pt' ), the_title( '<span class="screen-reader-text">', '</span>', false ) ); ?></a> </p> <?php if ( has_category() || comments_open( get_the_ID() ) ) : ?> <div class="hentry__meta meta"> <!-- Categories --> <?php if ( has_category() ) : ?> <span class="meta__item meta__item--categories"><?php the_category( ' ' ); ?></span> <?php endif; ?> <!-- Comments --> <?php if ( comments_open( get_the_ID() ) ) : // Only show comments count if the comments are open. ?> <span class="meta__item meta__item--comments"><a href="<?php comments_link(); ?>"><?php ShakaHelpers::pretty_comments_number(); ?></a></span> <?php endif; ?> </div><!-- .hentry__meta --> <?php endif; ?> </div><!-- .hentry__content --> </article><!-- #post-## -->
- This reply was modified 4 years, 3 months ago by Christian Bulota.