BelleO
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to Change Continue Shopping Text on Cart PageHello, thank you for your response. I added the code to functions.php but it didn’t work :(, any other ideas?
This is wonderful! Thank you for your response, your plugin sounds like the solution we need.
Did have a couple other clarifying questions, 1) is it possible to specify which type of orders or product categories are imported from Square into WooCommerce. For example, we use Square for products and services and would only want to import orders for products on one WooCommerce site and services on another site.
2) Is it possible to ring up a transaction in WooCommerce and have it pushed to Square pos hardware for payment. Thanks again!
- This reply was modified 5 months, 1 week ago by BelleO.
Forum: Plugins
In reply to: [WooCommerce Square] Generate order on Woocommerce but pay with SquareHello! Yes that is correct. We want to create the order in our Woocommerce backend for our bric and mortar store and the order is pushed into Square to collect payment via the Square POS hardware.
If this option is available, what are the steps to process this type of transaction. Thanks again for your assistance.
All of what you stated above is false and I am shocked your company operates business this way. There is nothing on the product or checkout page that states this is a subscription. Your product is entirely misleading and that is why I am warning other users on here because the only place that states it is a subscription is in a lengthy Terms and Conditions which most people don’t read. You also DO NOT by default send out renewal email, even your support person mentioned this! By default the email is turned off, you as the user are expected to turn it on even though you are not aware upfront that it is a subscription product. Your way of doing business is unethical. I will never purchase another product from your company and I can see from your review history that I am not the only one to have encountered your shady business practices.
Forum: Fixing WordPress
In reply to: How to hide text for logged in usersPHP sorry for not clarifying
Forum: Fixing WordPress
In reply to: How to hide text for logged in usersThank you Paul, I’m testing on staging site :). However I can’t seem to get it to work ??
Forum: Fixing WordPress
In reply to: How to hide text for logged in usersHi Steven,
This code shoes text only for logged in users? How do I modify to SHOW text to visitors and HIDE for logged in users?
Forum: Fixing WordPress
In reply to: How to hide text for logged in usersHi Steven thank you kindly for your quick response.
So, I read the article to do via php. Can you help me understand
This part here, goes in functions.php
function member_only_shortcode($atts, $content = null) { if (is_user_logged_in() && !is_null($content) && !is_feed()) { return $content; } } add_shortcode('member_only', 'member_only_shortcode');
and this part, goes in my text editor
[member_only]User is logged in.[/member_only]
Am I correct?
- This reply was modified 3 years, 10 months ago by Steven Stern (sterndata).
Hi Serge,
Thank you for the reply, I’ll submit a support ticket. Thank you
Belle
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Problems with Ecommerce connectionHi,
I purchased the premium plugin and I am having issues connecting my store. It gives me an error message
Bad Request. We were unable to process the request. A store with the provided ID already exists in the account.
I have changed the Store name which I assume is the ID and I am still getting the same error message.
Also I was told that this plugin supports interest groups. How can I create different forms and link them to different interest groups.
I absolutely need this functionality. Thanks
Hi Lap, I have purchased the premium plugin but don’t see how to subscribe users to specific list groups. Can you please explain how
Thank you Danny, I was able to see more details on your website. Another question does the premium plugin support Mailchimp groups? I want to be able to auto subscribe users directly into list groups.
Thank you,
Forum: Plugins
In reply to: [WooCommerce] Woocommerce without single product page for affiliate websiteHi!! Thank you Mike and Jesse for your help. One last question. How can I make the link open in a new tab?
Thank you so much!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce without single product page for affiliate websiteIt worked!! Thank you so much guys wishing good karma to you both ??
Forum: Plugins
In reply to: [WooCommerce] Woocommerce without single product page for affiliate websiteHi Mike, thank you again.
So to clarify I copy this code here:
<?php // Do not include this if already open!
/**
* Code goes in theme functions.php.
*/
add_action( ‘template_redirect’, ‘redirect_external_products’ );function redirect_external_products() {
global $post;if ( is_singular( ‘product’ ) && ! empty( $post ) && ( $product = wc_get_product( $post ) ) && $product->is_type( ‘external’ ) ) {
wp_redirect( $product->get_product_url() );
exit;
}
}And paste it into the functions.php file in my theme?
Is there any particular section of the functions.php file I paste it into? or am I missing something else.
I must apologize in advance, my knowledge of coding is at a beginner level.
Thank you!