webenthusiast
Forum Replies Created
-
Thanks. I do a bit of coding. Do you have guidance around what snippet needs to be modified to bypass the category sync? For example, a hook that I can add to the Snippets so every time an manual update happens, it does everything as it should except the category. Thank you again for your help.
That’s a brilliant test! It proves that cmsdetect is “guessing” and could be fake for some sites.
I’m impressed, thanks for sharing the test video.
- This reply was modified 3 years, 9 months ago by webenthusiast.
Forum: Installing WordPress
In reply to: Use same prefix database for two versions of WordPress@catacaustic So my site has a POS plugin installed and I would rather have it available only to admin by having a completely separate install so no one can get in even remotely.
@noritatait are you suggesting separate tables using different prefixes? I want to have access to same data/content but different interface to separate set of plugins.
I’d like to provide prices for each product by businesses in Connections and display the list of businesses with their prices on the product page.
Forum: Plugins
In reply to: [WooCommerce] Payment reauthorization fails after editing an orderThis would be fixed if pre-auth is released upon changing the status of order to Pending Payment from any other statuses especially “On hold” which is set upon placing an order and before capture .
Any thoughts on how to release pre-auth when status changes to “pending payment”?
- This reply was modified 4 years ago by webenthusiast.
Forum: Plugins
In reply to: [WooCommerce] Payment reauthorization fails after editing an orderInformation from Stripe logs:
“You cannot provide a new payment method to a PaymentIntent when it has a status of requires_capture. You should either capture the remaining funds, or cancel this PaymentIntent and try again with a new PaymentIntent.”When editing an order in WooCommerce to add new items, how do I release authorization to request a new authorization for larger amount? Also thinking about customer experience to avoid too many emails and hoping to make all changes in as little number of emails as possible.
Please help.
Forum: Plugins
In reply to: [WooCommerce] Override Cart and Checkout URL for specific pageHere is the code I am trying:
//checkout url add_filter('woocommerce_get_checkout_url', 'my_checkout'); function my_checkout($url) { global $woocommerce; global $post; //echo "<script>$(document.body).trigger('wc_fragment_refresh');</script>"; if(is_page(4390) ){ return $checkout_url = '/whatevercheckout'; } else { return $checkout_url = '/checkout'; } } //cart url add_filter('woocommerce_get_cart_url', 'my_cart_url'); function my_cart_url($url) { global $woocommerce; global $post; if(is_page(4390) ){ return $cart_url = '/whatevercart'; } else { return $cart_url = '/cart'; } }
I need the “ready for pickup” option as well, please. Thank you.
“Item(s) from one store already in your cart. First checkout with those and then purchase from other stores!”
The tone in the message is a bit harsh. How can I edit this message for my website? I would like to use a softer tone for my customers. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Add XX to qualify for free shipping messageIt was a setting in WCFM plugin but the author generously provided code snippet to fix.
Forum: Plugins
In reply to: [Yoast SEO] show category/tag in product meta titleHey,
I tried adding category in title template of Yoast SEO plugin and it did show up. You need to ensure that you are not overriding the title by specifying a value while creating/editing the post under SEO Title of the SEO section.
Makes sense?Forum: Themes and Templates
In reply to: How to Display Just One Post on a Page of PostsYour code seems to be missing a closing paranthesis for args variable. Assign the following to $args. Hope that helps.
$args= array( 'paged' => $paged, 'numberposts' => '1' )
Forum: Plugins
In reply to: [Genesis Grid] Remove Featured Image from Full Postswell, in that case you need to elaborate the ask. sharing a link along would also help.
Forum: Themes and Templates
In reply to: How to Display Just One Post on a Page of PostsForum: Fixing WordPress
In reply to: Blank Page Error.(if a / is missing)Maybe there is some problem in the Permalinks settings? Did you compare the settings in the two sites?
By the way, the site is interesting!