hansheger
Forum Replies Created
-
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Connect with WCFM Marketplace.
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Connect with WCFM MarketplaceWOW. thanks for the fast and clear answer!
Have a good one and stay safe ??Hello,
i′m having the same problems. Can you tell me how the problem was solved?
Greetings
Lars
Forum: Plugins
In reply to: [Delete Me] Not displaying in the my account sectionHello,
this does not come automatically.
i found this one at business bloomer. Add this to your functions.php (with your credentials) to create a new account tab./**
* @snippet WooCommerce Add New Tab @ My Account
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @compatible WooCommerce 3.5.7
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/// ——————
// 1. Register new endpoint to use for My Account page
// Note: Resave Permalinks or it will give 404 errorfunction bbloomer_add_premium_support_endpoint() {
add_rewrite_endpoint( ‘delete-account’, EP_ROOT | EP_PAGES );
}add_action( ‘init’, ‘bbloomer_add_premium_support_endpoint’ );
// ——————
// 2. Add new query varfunction bbloomer_premium_support_query_vars( $vars ) {
$vars[] = ‘delete-account’;
return $vars;
}add_filter( ‘query_vars’, ‘bbloomer_premium_support_query_vars’, 0 );
// ——————
// 3. Insert the new endpoint into the My Account menufunction bbloomer_add_premium_support_link_my_account( $items ) {
// Remove the logout menu item.
$logout = $items[‘customer-logout’];
unset( $items[‘customer-logout’] );// Insert your custom endpoint.
$items[‘delete-account’] = ‘Delete Account’;// Insert back the logout item.
$items[‘customer-logout’] = $logout;return $items;
}add_filter( ‘woocommerce_account_menu_items’, ‘bbloomer_add_premium_support_link_my_account’ );
// ——————
// 4. Add content to the new endpointfunction bbloomer_premium_support_content() {
echo ‘<h3>Delete Account</h3>’;
echo do_shortcode( ‘[plugin_delete_me /]’ );
}add_action( ‘woocommerce_account_delete-account_endpoint’, ‘bbloomer_premium_support_content’ );
// Note: add_action must follow ‘woocommerce_account_{your-endpoint-slug}_endpoint’ format// ——————
// Redirect to Home from WC My Account Log Outadd_action(‘wp_logout’,’auto_redirect_after_logout’);
function auto_redirect_after_logout(){
wp_redirect( home_url() );
exit();}
Forum: Plugins
In reply to: [Delete Me] Woocommerce Products deleted with account?Hello Again,
if this is the standard procedure i mentioned above, can you please privide a way to NOT DELETE the images assosiated with the deleted account in wc_content/upload folder?
Or is there a chance to delay the delete by a determinate time (like after 90 days)?
This would be awesome.Thanks again
H.
Forum: Plugins
In reply to: [WooCommerce] WC notice wrapper not showing register option on front pageHello again,
Anyone can help me out with this?
regards
W.Forum: Plugins
In reply to: [WooCommerce] WC notice wrapper not showing register option on front pageHello,
thanks for your reply.
This is waht i meant: https://ibb.co/85cRpwB
Here is the one displayed as it should be displayed: https://ibb.co/fCScYWy
Hope this helps.
ThanksW.
Hello Adam,
works just fine! Thanks a lot.
Topic closed ??
Hello and thanks for the fast answer. I′ll check this and will reply here.
Forum: Plugins
In reply to: [WooCommerce] Change Headline of woocommerce shop page searchHello,
as i′m using WPML i was looking for a simular solution and i found this one which is working great.
https://wpml.org/forums/topic/how-to-change-default-english-texts-in-theme-or-plugins/
Thanks for the hint.
Topic is resolved!Forum: Plugins
In reply to: [WooCommerce] Change Headline of woocommerce shop page searchForum: Plugins
In reply to: [Advanced Woo Search] Search field not showing after changing database prefixHello,
any ideas on this? Problem still exists.
maybe a solution is to remove all things connected with the plgin and instal it again. Can you tell how to remove all plgin related things totally. There might be something left after delte in config or content file?- This reply was modified 4 years, 4 months ago by hansheger.
Forum: Plugins
In reply to: [Advanced Woo Search] Search field not showing after changing database prefixHello,
i added the plug in with short code and also with Seamless Integration. Both were working before. Both now showing me the message to reindex table.
I also dont think it′s because of database. Because i installed the plugin again.- This reply was modified 4 years, 5 months ago by hansheger.
Forum: Plugins
In reply to: [Advanced Woo Search] Search field not showing after changing database prefixHello,
after i chanced DB Prefix i have installed the plug in again. After reindex table i can see all products and do not have any error messages. Still no search bar.
Could it be not all information from the previous installation have been deleted?regards
Forum: Plugins
In reply to: [Delete Me] Add Product Delete for Woocommerce vendorsHello Clint,
thanks for the fast answer. Yes, it totally makes sense not to interfear with other plugins. I found this solution: https://www.ads-software.com/support/topic/remove-vendor-products/
Do you think it will work while using your plugin to delete users?
Thanks again.
H.