loopforever
Forum Replies Created
-
Forum: Plugins
In reply to: [Address Book for WooCommerce] Defining a New FieldI simplified the project and translated it into English. Could you please examine it?
Main File: Online Editor
And other files:
Online File-2
Online File-3
Online File-4
Online File-5- This reply was modified 4 years, 4 months ago by loopforever.
Forum: Plugins
In reply to: [Address Book for WooCommerce] Defining a New FieldThank you for your answer.
Yes I am using the latest version.
Unfortunately, I still haven’t been able to resolve this issue. Actually I added a plugin new domain: LinkThis plugin basically does the following, although the example is not very accurate:
Matches the selected state with the district. That is, districts are loaded according to the selected state. For example, if we consider for the USACalifornia –> Sacramento
California –> Los AngelesI also checked this plugin. As you said, I did not see a problem with adding Woocommerce hooks. But if necessary, I will write again myself.
Actually the only problem on your part is data mapping. If a new address is added, it will appear in My Account > My Addresses. There is no problem here. However, the newly added data value is not loaded on the checkout page. That is, if the customer chooses the address it added from the address book, no value is passed to the dropdown.
You said that there is no need to edit in terms of Javascript. However, there is an element with a new ID. Probably the data is not transferred because of this. I could not understand exactly what you are saying. Isn’t it necessary to write js for the new element to transfer data?- This reply was modified 4 years, 4 months ago by loopforever.
- This reply was modified 4 years, 4 months ago by loopforever.
Actually, frankly speaking, I decided to write code myself. Why ? Because a very small feature of this plugin is enough for me. However, other users are also doing research on this. That’s why I wanted to let you know.
Orders are processed with Dokan Lite. I think the test here will be enough and this function:
If there is a suborder, the relevant method returns 0
dokan_get_seller_id_by_orderThis function will help you.
- This reply was modified 4 years, 4 months ago by loopforever.
- This reply was modified 4 years, 4 months ago by loopforever.
Understood.
Thank you. I’m asking for the Dokan. As far as I can see, it is not suitable; but it would be better for you to test it.Thank you for your answer. Actually, I mentioned input elements there. So it’s not a big deal 🙂
Forgot to add: Have you tested the plugin with any marketplace model? As you know, there are suborders in marketplace models. In such a case, I think there will be a problem.
Thank you again for your interest.Forum: Plugins
In reply to: [WooCommerce] Check does the product have a parent ?I will try this. Thank you
Forum: Plugins
In reply to: [Font Awesome] Error in ConsoleThank you for your answer.
This is an error appearing in firefox browser. I have not used it in any CSS file, but it may be used by the theme or any plugin.
Is there any practical solution to solve this?Forum: Plugins
In reply to: [WooCommerce] Export-Import CommandThank you so much.
Forum: Plugins
In reply to: [WooCommerce] Export-Import Command2-) I didn’t want to open a topic again. I would be glad if you help.
Is there a hook that works during the product transfer phase?
I don’t want to write data like attribute visibility and attribute global for variations as 1 at a time. I want to get it as 1 by default. That’s why I asked.Forum: Plugins
In reply to: [WooCommerce] Export-Import CommandThank you for your answer. Yes I know that. However, I want the default value to always be semicolon (;). Is there a hook for this?
Also in which php file is this being edited.
Thank you again.Forum: Plugins
In reply to: [WooCommerce] After Customer First Log inThank you so much.
Yes, I’ve seen that too but I was wondering if there is a hook for Woocommerce.
Because if the customer logs in for the first time, some meta was automatically generated from the usermeta table. I guess there are no other hooks.
I wish you good work.Previously, more or less the way was shown. Now you show no way.
I think a lot of effort has been put into this plugin. Congratulations to your developer team on this. However, I would like to clarify a few points. Because I know there are many people reading this.
Have you checked your plugin files? There are a few comments on what it does with the hundreds of lines of files. They are also incomplete explanations.
Have you reviewed the content you have published under the name of Develepor document? Almost nothing useful.
Have you checked the developer pages? I want to express this here. I hope you read.
I use many plugins, I contact support from time to time. But I’m having a problem with you alone.
You’re probably doing this to make money here: https://wedevs.com/welab/request-customization/Thinking that you are aiming for progress, I hope you also have bosses who are smart and have the ability to interpret the era, who are aware that the products that lead the market and that have achieved great things on a global scale are open source products that allow development in forums.
By the way, I solved the problem myself 🙂 Thank you. Good work Ahmad.
Best regards.- This reply was modified 4 years, 6 months ago by loopforever.
The problem is:
I tried these hooks and they didn’t work.
I am creating a Vendor Register with register form. I keep the data in a usermeta.
The seller is not active after registration. The plugin offers a hook after activation: knd_user_activated.
Using this I wrote a code to identify the store name after the seller activated it. However, this did not work.add_action('knd_user_activated', 'user_actived_after_register', 10); function user_actived_after_register($user_id){ $get_data = get_user_meta($user_id, 'vendor_new_form',true); $create_store_name_data = array('store_name'=>$get_store_name['store_name']); update_user_meta( $user_id, 'dokan_profile_settings',$create_store_name_data); } }I tried the hooks you mentioned in the 2nd. However, it still fails. For example, this code is defined below and it still doesn’t work. I activate the seller. But the store name always comes up blank. I have store name from database. There is never a problem here.
I haven’t been able to solve this problem for 1, 1.5 weeks. I would be very happy if you guide me.add_action('dokan_new_seller_created', 'user_actived_after_register', 10,2); function user_actived_after_register($user_id, $dokan_settings){ $get_data = get_user_meta($user_id, 'vendor_new_form',true); $dokan_settings['store_name'] = $get_store_name['store_name']; } }Hello ,
I solved the problem but there is something else. Even though I changed the priority order (99), the menu remains constant.
What can I do ?
add_submenu_page( 'dokan', __( 'Customer Relationship ', 'cr' ), __( 'Customer Relationship', 'cr' ), 'manage_options', 'customer-relationship', array( $this, 'customer_relationship_menu_context' ), 99);Not: For adding i used dokan_admin_menu hook.
Thanks for your answer. I did these and the problem is in Elementor.
As I said in the past, if I run Elementor, some icons are not loading.
I installed the Font Awesome plugin on recommendation.
Tested on conflict and found the following results: Image Link