- This topic has 53 replies, 4 voices, and was last updated 2 years, 4 months ago by
glander.
-
AuthorPosts
-
-
August 30, 2023 at 1:00 PM #195664
glander
ParticipantHi.
I use the RnB – WooCommerce Booking & Rental Plugin along with your Multivendor. I also contacted RnB – WooCommerce Booking & Rental Plugin but this seems to be another issue, as they said.
Please take a look at:
https://mietemich24.de/
Login with: Vermieter / 12345678Then you will be directed to the Vendor-Backend. Then go to Vermietung —- Vermietungsartikel hinzufügen
You can see, that there are such points as DISTANCE UNIT PRICE or SELECT PERSON and so on. Is this from MultivendorX? And how can i translate this or disable such points as SELECT PERSON (i don´t need this)
Or is this also no MultivendorX Issue? I can not find da way to translate or disable.
-
August 30, 2023 at 5:38 PM #195675
Sangita Support Squad
Keymaster@glander you can translate the plugin using Loco Translator using, our guidelines available here – https://multivendorx.com/docs/knowladgebase/multivendorx-translation-guide/
Now if you want to remove the above mentioned options from the vendor dashboard you can easily do that by overriding the html-endpoint-add-inventory.php template file.
You may follow the below path to override the template file yourtheme/mvx-pro/rental-pro/html-endpoint-add-inventory.php. -
August 30, 2023 at 6:12 PM #195680
glander
ParticipantThis reply has been marked as private. -
September 1, 2023 at 5:07 PM #195764
Sangita Support Squad
KeymasterTo translate the options like Select person , distance unit you will have to translate the strings of WooCommerce Rental & Booking plugin, as we use their strings.
Now if you want to remove the section from the vendor dashboard it will not happen by only overriding template files.
You will have to use the below mentioned filter –
apply_filters('mvx_frontend_dashboard_rental_pro_taxonomies', array( 'rnb_categories', 'pickup_location', 'dropoff_location', 'resource', 'person', 'deposite', 'attributes', 'features' ));
-
September 5, 2023 at 5:55 PM #195912
glander
ParticipantThis reply has been marked as private. -
September 6, 2023 at 12:29 PM #195934
Sangita Support Squad
Keymaster@glander We translated the set quantity section using the loco translate (https://prnt.sc/vAn4Ds1HdDWO ) and it got translated in the vendor dashboard too(https://prnt.sc/8XoCn9RonYzL) .
Can you please share with us exactly which fields you want to translate so we can check the same on our end. -
September 7, 2023 at 11:13 AM #195979
glander
ParticipantThis reply has been marked as private. -
September 7, 2023 at 4:57 PM #195991
Sangita Support Squad
KeymasterYou can add the below code in the functions.php file of your current active theme to remove the parts from the vendor dashboard –
add_filter('mvx_frontend_dashboard_rental_pro_taxonomies', 'remove_fields', 10, 1);
function remove_fields($link) {
$link = array('rnb_categories', 'person');
return $link;
}
And to translate the options distance unit and distance unit price you need to use loco translate. But the options select categories, select person are part of taxonomy class hence those can not get translated.
-
September 8, 2023 at 10:47 AM #196003
glander
ParticipantThis reply has been marked as private. -
September 8, 2023 at 5:39 PM #196008
NerdySupportExpert Moumita
Keymaster@glander, please do share a temporary admin, ftp access so we can check.
While sharing the access don’t forget to mark the response as private.
-
September 8, 2023 at 5:47 PM #196011
glander
ParticipantThis reply has been marked as private. -
September 9, 2023 at 9:29 AM #196025
Sangita Support Squad
KeymasterThanks for sharing the access. Our team looking into this. However as we are closed due to weekends, hence the reply might get a bit delayed.
-
September 21, 2023 at 12:27 PM #196503
glander
ParticipantThis reply has been marked as private. -
September 21, 2023 at 12:40 PM #196504
Sangita Support Squad
KeymasterWe need the site access too. Kindly create a staging site that should be an exact replica of you live site and share the staging site URL an d temporary admin and FTP access with us.
While sharing the access don’t forget to mark your reply as private.
-
September 21, 2023 at 12:49 PM #196505
glander
ParticipantThis reply has been marked as private. -
September 21, 2023 at 2:10 PM #196509
Sangita Support Squad
KeymasterThe shared access is not working https://prnt.sc/s9y-AjKkNQaX. Kindly check and share the correct access.
-
September 21, 2023 at 6:14 PM #196519
glander
ParticipantThis reply has been marked as private. -
September 21, 2023 at 8:20 PM #196523
Sangita Support Squad
Keymaster@glander we are now able to access your site. But it seems like your live site. I t would be great if you can create a staging site that should be an exact replica of your live that and share the staging site url, temporary admin and ftp access with us so that we can check the issue there and help you accordingly.
Also while sharing access don’t forget to mark your reply as private. -
September 22, 2023 at 6:09 PM #196541
glander
ParticipantThis reply has been marked as private. -
September 22, 2023 at 6:43 PM #196546
Sangita Support Squad
KeymasterThanks for the access. I have created a new vendor on your staging site but however i am not able to login as a vendor. Kindly check here https://watch.screencastify.com/v/brJ0qcdIyi2JiukwFllN.
-
September 22, 2023 at 6:49 PM #196547
glander
ParticipantThis reply has been marked as private. -
September 22, 2023 at 8:38 PM #196552
Sangita Support Squad
KeymasterCan we add a test vendor and also check by adding the code shared above on your end?
-
September 23, 2023 at 2:59 AM #196555
glander
ParticipantThis reply has been marked as private. -
September 23, 2023 at 11:39 AM #196565
Sangita Support Squad
Keymaster@glander We have added the code in the functions.php file of the current active theme on your end and the code is working absolutely fine. Kindly check the video https://watch.screencastify.com/v/EFib75H7JmK6Z34HXBjW. Once you add the code the options that you wanted to remove are removed correctly.
Kindly make sure you have added the code in the active theme’s functions.php file. Not on some inactive theme’s file. -
September 26, 2023 at 10:48 AM #196661
glander
ParticipantThis reply has been marked as private. -
September 26, 2023 at 3:19 PM #196664
Sangita Support Squad
Keymaster@glander To remove these options you need to override the html-endpoint-add-inventory.php template file following the below mentioned path .
yourtheme/mvx-pro/rental-pro/html-endpoint-add-inventory.php.
In the template file you need to remove the lines from 115 – 134 -
September 26, 2023 at 6:44 PM #196673
glander
ParticipantThis reply has been marked as private. -
September 26, 2023 at 8:02 PM #196675
Sangita Support Squad
KeymasterThe rental module is working fine on our end. Kindly check the video https://fluvid.com/videos/detail/4XwxrIY98osOMxg4P.
On your end the rental module may not be enabled. Kindly check if the module is enabled or not. -
September 27, 2023 at 1:21 AM #196680
glander
ParticipantThis reply has been marked as private. -
September 27, 2023 at 10:11 AM #196683
Sangita Support Squad
KeymasterThis reply has been marked as private. -
September 27, 2023 at 11:41 AM #196684
glander
ParticipantThis reply has been marked as private. -
September 27, 2023 at 5:11 PM #196696
Sangita Support Squad
Keymaster@glander We have checked this on our end and once we removed the lines the options got removed. We have even checked from the main plugin file. Can you please check again carefully.
Also for the overriding of the template do follow the below mentioned path and remove the lines from 115-134.
yourtheme/mvx-pro/rental-pro/html-endpoint-add-inventory.php. -
September 28, 2023 at 1:14 PM #196722
glander
ParticipantThis reply has been marked as private. -
September 28, 2023 at 5:42 PM #196744
Sangita Support Squad
KeymasterWe are able to recreate this issue on our end and we will fix it soon and also keep you posted regarding the same. Kindly provide us some time.
-
October 3, 2023 at 12:51 PM #196854
Sangita Support Squad
KeymasterWe have fixed the issue with translation in our MultiVendorX Pro 1.2.1 version. Kindly use the updated plugin on your end and check. Also add the below code accordingly the functions.php file of your current active theme to remove some options under the add inventory tab in rentals in the vendor dashboard –
add_filter('mvx_frontend_dashboard_rental_pro_taxonomies', 'remove_fields', 10, 1);
function remove_fields($link) {
  unset($link['pickup_location']);
  unset($link['dropoff_location']);
  unset($link['resource']);
  unset($link['deposite']);
  unset($link['attributes']);
  unset($link['features']);
  return $link;
}
-
October 6, 2023 at 2:55 PM #196952
glander
ParticipantThis reply has been marked as private. -
October 6, 2023 at 3:05 PM #196953
glander
ParticipantThis reply has been marked as private. -
October 6, 2023 at 3:08 PM #196954
glander
ParticipantThis reply has been marked as private. -
October 6, 2023 at 6:07 PM #196956
NerdySupportExpert Moumita
Keymaster@glander, not to worry.
Can you share the video on how can we recreate the issue, so we can check the same on your end?
-
October 6, 2023 at 6:17 PM #196960
glander
ParticipantThis reply has been marked as private. -
October 6, 2023 at 6:38 PM #196963
Sangita Support Squad
Keymaster@glander To translate the strings in the vendor dashboard you need to translate those in MultiVendorX Pro using Loco translate. You may follow our video for reference https://watch.screencastify.com/v/nldUvLlKkIXXcAeDdfBs.
Modify the below code accordingly and add in the functions.php file of your current active theme –
add_filter('mvx_frontend_dashboard_rental_pro_taxonomies', 'remove_fields', 10, 1);
function remove_fields($link){
unset($link['pickup_location']);
unset($link['dropoff_location']);
unset($link['resource']);
unset($link['deposite']);
unset($link['attributes']);
unset($link['features']);
return $link;
}
-
October 8, 2023 at 7:15 PM #196986
glander
ParticipantThis reply has been marked as private. -
October 9, 2023 at 12:11 PM #196998
Sangita Support Squad
Keymaster>>>@glander We have logged into your site. You are using the MultiVendorX Pro 1.2.0. We have added the fix in our current MultiVendorX Pro 1.2.1 version.
So kindly download the latest version of MultiVendorX Pro from here https://multivendorx.com/my-account/api-downloads/. And then try to translate the strings from MultiVendorX Pro using the loco translate. You may follow our video for reference https://watch.screencastify.com/v/nldUvLlKkIXXcAeDdfBs.
Then add the earlier shared code in the functions.php file of your current active theme accordingly. -
October 9, 2023 at 1:58 PM #197002
glander
ParticipantThis reply has been marked as private. -
October 9, 2023 at 6:18 PM #197016
Sangita Support Squad
Keymaster@glander We have again checked the translation on our end and the translation is working fine and also we are not getting any such error message as shared on your screenshot. Kindly check the video https://fluvid.com/videos/detail/MDZQqfm5_QfywORZw.
We have checked the same on your end but the translation is not working on your end somehow. To debug the issue further on your end can disable plugins and themes on your end. We need approval from your end to proceed with the debugging. -
October 9, 2023 at 6:28 PM #197021
glander
ParticipantThis reply has been marked as private. -
October 9, 2023 at 9:01 PM #197027
Sangita Support Squad
Keymaster@glander It seems like there is a conflict with your theme.When we switched to the default theme the translation is working fine. Kindly check the video https://watch.screencastify.com/v/ju4AJLSNkMYnBePnQ1C0.
Our team will check this on your end and get back to you with the solution. Kindly give us some time. -
October 9, 2023 at 9:56 PM #197028
glander
ParticipantThis reply has been marked as private. -
October 10, 2023 at 3:25 PM #197067
Sangita Support Squad
KeymasterAs there is a theme conflict issue on your end hence it might take some time for our dev team to debug the issue on your end. Also in this process we may need assistance from the theme team as well.
But not to worry we will keep you posted regarding all the updates. -
October 16, 2023 at 5:04 PM #197255
Sangita Support Squad
Keymaster@glander Our team has checked the issue on your end. We have found out that html-endpoint-add-inventory.php this template file has been overridden on your child theme. So you need to re-override this template file with the new html-endpoint-add-inventory.php template file from the latest version of MultiVendorX Pro. As the old html-endpoint-add-inventory.php is not compatible with the new version.
Hopefully this will solve your issue.
-
October 17, 2023 at 2:21 PM #197279
glander
ParticipantThis reply has been marked as private. -
October 17, 2023 at 6:12 PM #197285
MVX Support Ninja
KeymasterHi,
override rental-pro/templates/html-endpoint-add-inventory.php by copying it to yourtheme/mvx-pro/rental-pro/html-endpoint-add-inventory.php
then remove line no 93 to 104
or below code.<div class="form-group"> <label class="control-label col-md-3 col-sm-3"><?php esc_html_e( 'Distance Unit', 'mvx-pro' ); ?> <span class="img_tip" data-desc="<?php esc_html_e( 'If you select booking layout two then for location unit it will be applied', 'mvx-pro' ); ?>"></span></label> <div class=" col-md-6 col-sm-9 "> <select name="distance_unit_type" class="form-control regular-text distance_unit_type"> <?php foreach ( $distance_unit_type_options as $key => $option ) {?> <option value="<?php echo $key; ?>" <?php selected( $distance_unit_type, $key ); ?>><?php echo $option; ?></option> <?php } ?> </select> </div> </div>regards,
-
November 1, 2023 at 4:06 PM #203391
glander
ParticipantThis reply has been marked as private.
-
-
AuthorPosts
- The topic ‘Translation Issue’ is closed to new replies.






