Angela2601
Forum Replies Created
-
Oh wait. I’ve found it. Thank you
I want to remove it from the member directory. Step 1 doesn’t remove it from the member directory page.
I followed those instructions in the link to remove the database tables etc. But I still have files that were created in the main directory (eg 401.shtml). I am wanting to know what other files are created when using this plugin so I can search for and remove them.
Forum: Plugins
In reply to: [Adminimize] User Can’t See AnalyticsNot yet. Unfortunately the author of the plugin has not responded and I can’t find any other plugin that does the same thing as this one – there’s some that do similar but this one was the better one from what I could see. Can you let me know if you end up finding a fix for this?
Forum: Plugins
In reply to: [Star CloudPRNT for WooCommerce] Split Words over multiple linesThat’s great. Thanks Lawrence!
Forum: Plugins
In reply to: [Star CloudPRNT for WooCommerce] Orders Not PrintingPerfect. Thank you
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Something Went Wrong….I have the paypal payment gateway enabled for admin and store manager only. I can’t have it live for the public for obvious reasons. I have attempted to pay using credit card only and it continues to throw that error. What other information do you need?
Forum: Plugins
In reply to: [WooCommerce] Add to cart redirects to HomeSame thing is happening to me. Did you get this resolved?
Forum: Plugins
In reply to: [WooCommerce] Add to Cart BehaviourI have the “enable AJAX..” checked but it still refreshes the page and clears the filter.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart BehaviourIs there a way to keep the same filters applied? At the moment it goes back to the shop page which is fine but then the filter is cleared so all products are displayed.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart RedirectI already have disabled the redirect to cart. The problem is when a customer filters to a product category and then selects add to cart for a product, the page reloads without the filter and takes them back to the shop page with no filters applied. Is there anyway to keep them on the same page with the same filters applied?
Thanks Fauzan,
do you know whether this will work with WCLovers Woocommerce Front End Manager? I have the Front End Manager installed which means the shop manager does not see the wordpress dashboard at all. I need the shop manager to be able to approve wholesale customers from the front end dashboard plugin.
Forum: Plugins
In reply to: [WooCommerce] Selling By Unit And WeightI was hoping for something a bit more cleaner. Adding through the use of variable products means I also have to set units as a variation as well as weight. The customer needs to be able to enter as many units as they want and I don’t want to have to add 1,2,3,4 etc. as values for the unit attribute.
What would be perfect is the option to include a drop down that includes the options “each” or “kilogram” and a text box that allows the customer to enter a number so that they can either buy 1 unit or 1kg. Does anyone know of a plugin that could achieve this?1. I don’t need the wholesale customer to access the store manager page. What I was asking is whether the Store Manager can add a new Wholesale Customer from the front end dashboard similarly to how they can add a customer.
This didn’t work. I am wanting to remove the store policies tab from the product page. Similarly to how I can move additional information from the product page with the following code:
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 99 );
function woo_remove_product_tabs( $tabs ) {unset( $tabs[‘additional_information’] ); // Remove the additional information tab
return $tabs;
}