pintillo86
Forum Replies Created
-
Thank you, thank you, thank you!
I have disabled the woocomerce redirect and have changed the search action and problems solved.
Both things worked like a charm!
Many Thanks again!
Looking forward for this option, I’m using elementor builder, and I thought that if I just make a custom page and use the Shortcode I can get it done, but it is still showing the “WordPress Styled” Page.
Forum: Plugins
In reply to: [Code Snippets] An error occurred when saving the snippet.I even try copying and pasting one of the example snippets included with the pugin and still getting the error.
But I finally managed to solve the issue, I deactivated and uninstall the plugin, and then reinstall and now it works!Forum: Plugins
In reply to: [Code Snippets] An error occurred when saving the snippet.No matter what snippet I try to save, it gives me the error. In this case I’m trying to save the following one:
<?php // only copy if needed /** * Removes coupon form, order notes, and several billing fields if the checkout doesn't require payment. * * REQUIRES PHP 5.3+ * * Tutorial: https://skyver.ge/c */ function sv_free_checkout_fields() { // first, bail if WC isn't active since we're hooked into a general WP hook if ( ! function_exists( 'WC' ) ) { return; } // bail if the cart needs payment, we don't want to do anything if ( WC()->cart && WC()->cart->needs_payment() ) { return; } // now continue only if we're at checkout // is_checkout() was broken as of WC 3.2 in ajax context, double-check for is_ajax // I would check WOOCOMMERCE_CHECKOUT but testing shows it's not set reliably if ( function_exists( 'is_checkout' ) && ( is_checkout() || is_ajax() ) ) { // remove coupon forms since why would you want a coupon for a free cart?? remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 ); // Remove the "Additional Info" order notes add_filter( 'woocommerce_enable_order_notes_field', '__return_false' ); // Unset the fields we don't want in a free checkout add_filter( 'woocommerce_checkout_fields', function( $fields ) { // add or remove billing fields you do not want // fields: https://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/#section-2 $billing_keys = array( 'billing_company', 'billing_phone', 'billing_address_1', 'billing_address_2', 'billing_city', 'billing_postcode', 'billing_country', 'billing_state', ); // unset each of those unwanted fields foreach( $billing_keys as $key ) { unset( $fields['billing'][ $key ] ); } return $fields; } ); } } add_action( 'wp', 'sv_free_checkout_fields' );
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Can’t ConnectSo for all you guys with a similar issue! Ryan Helped me a lot, at the end the problem was that the way my memcached system is working was blocking the “secret” site transient.
SOLUTION
Turn all caching systems off while installing the plugin, and it worked fine!Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Can’t ConnectHey @ryanhungate I have just sent you an email!
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Can’t ConnectI checked the Console, and its giving me the following error: “Error calling OAuth finish endpoint.”
Forum: Plugins
In reply to: [Elementor Custom Skin] All posts linking to same URLI’m sorry, it works fine, I have just realized, it was a link inside the skin!
Forum: Plugins
In reply to: [Clever Mega Menu for Elementor] Menu Toggle on Mobile not workingNot beeing able to make Mega Menu work on mobile, already using WordPress Navigation Menu widget.
This is the website https://staging7.beefitcr.com/
If you go on desktop and click on “HOLA, IDENTIFíCATE” you can see the mega menu its toggled. But If you go to mobile it is not toggled anywhere. Any clues on how to fix this?Forum: Plugins
In reply to: [Gravity Forms Sticky List] There was an error while saving your settingsI know what is causing the issue on my end(not sure how to fix it thou). The thing is I’have my site hosted in siteground and I use their staging app to avoid caowboy coding, so when I try to setup the plugin on the staging site I get the error, if I set it up on production it works fine, I’m guessing it has something to do with the plugin not finding the URL.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] There was an error while saving your settingsHey, Same issue here!
Any solutions yet?Forum: Plugins
In reply to: [Custom Icons for Elementor] Icons showing up as boxesI’m having the same issue here!
Forum: Plugins
In reply to: [Simple Social Share] Warnings and ErrosThanks!
But Still Getting this Warning on “Select Services” sectionWarning: Invalid argument supplied for foreach() in /home1/pintillo/public_html/errepedesign.com/wp-content/plugins/simple-social-share/includes/admin-form.php on line 34
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] BakUp ErrorsI manage to solve this by installing the beta and deactivating the old one, thanks a lot it all seems to be working fine now!
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] BakUp ErrorsI downloaded the Zip already, how can i make the update? should I uninstall the actual version and install this Zip?