wilsmithwp
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Booking Calendar] Extras do not calculate the right priceAlright, it is not possible in the plugin i found out.
Solved it in another simple way.
Solved.Forum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Add class=”notranslate” to filtersThank you very much!
Have a great day.
WilForum: Plugins
In reply to: [Avalon23 Products Filter for WooCommerce] Add class=”notranslate” to filtersHello there,
Thanx for you time again! ((-;Nope,
It was line 1117
label.className = ‘avalon23_radio_checkbox_container skiptranslate notranslate’;That did the trick.
The titles get translated but the content not, so that is ok for now.
Brilliant!!!!Should i secure filter.js in my childtheme? Can i copy Avelon23 to my childtheme to secure some codes?
Forum: Plugins
In reply to: [Custom Post Type UI] Add google class notranslate to taxonomiesThanx Michael,
No problem, i will check this out with Gtranslate support.
Thanks or your help so far.
WilForum: Plugins
In reply to: [Custom Post Type UI] Add google class notranslate to taxonomiesHi Michael,
Thanx for solution on my second question. I will look into that. Should be no problem.
For the first:
I made custom taxonomies with your plugin, assigned them to the post types and if i start the editor for a specific post type, to create a new post, i see those new created categories. That works fine.
But, when i use Gtranslate to let users and loggedin users change their language, it translates the categories.
That is no problem if categorie like “books” is translated into french or whatever language. But on locations, like cities, it is a problem.
So i wonder, can i add the class for notranslate to your plugin, for each taxonomie i want NOT to translate, or is it something i should do with the metabox that appears? I just have no clue where to start.
An example:
The village “La souterain” in France, is one of the taxonomie options in the taxonomie Locations.
When i switch to German or lets say English, it says “the basement, or the underground”.
No clue where to tackle this.
MY regards and thanks for your thinking. Much appreciated.
WilHi!
Thanx for all the work!
Unfortunately, it did not work.The filter is still gone on the frontpage after applying these changes.
When i change “A vendre” into “Vente” (french for sale), the filter comes back on the front page.
So the select field item a_vendre:A vendre does not work for me.
Also, in the editor, a client has a pulldown and selects “a_vendre:A vendre”
That is not looking very well ((-;I decided i just keep it to a 1 word.
And i will update the plugin everytime you make an adjustment, perhaps it will be solved in the future.
It could also be just my code, because i adjusted a lot of code in this project.So, thankyou very much. Very good service and thanx for the good try.
If you have a “AHA EUREKA” moment, just let me know!Greetz and enjoy your evening.
WilAlright, here we go:
image1
Image2
Image3
Image4
Image5
I have 2 sets, 1 for the admin role and 1 for the shop_manager role.
These are for the admin role, but, they are the same. Only some stuff you see in image 4 and 5 are disallowed to see by the shopmanager and should not be the problem.Thanx!
WilSo, i cannot select the metafield “demand ou offert” anymore, it is grey.
(see image)
Also, the complete filter is gone on the frontpage.Hi, thanks for your time.
I have enclosed an image of the problem.I use ACF custom fields to create fields that can be filled out in the editor.
Then i use Avelon23 to create a filter on it.
Like i said, it works as long as i do not use 2 words in a field.
I changed “A Vendre” into “A_vendre” and it works.
But as you can see in the image, i cannot select the custom field anymore after i changed the outcome into “A Vendre”.Hope this works for you.
Cheers!
Wilor=for
Hello Champ Camba, that works!
Many thanks or this code.
Greetz
WilThe sub-theme is Digital Shop.
Hi, happy Newyear! ((-;
No, it is a sub-theme from e-commerce plus by ceylonthemes.
I made a childtheme from it.Forum: Plugins
In reply to: [Stars Rating] Hide metabox in editorI found it.
Problem solved.Forum: Plugins
In reply to: [Stars Rating] Hide metabox in editorAlright, i think i found it but i am having a hard time finding the name of the metabox. Under here you will find my code. What am I doing wrong? I tried admin_menu and admin_head, but i think i have the wrong metaboxname?
add_action( ‘admin_menu’ , ‘wpdocs_remove_post_custom_fields’ );
function wpdocs_remove_post_custom_fields() {
remove_meta_box( ‘stars-rating.postbox’ , ‘post’ , ‘normal’ );
}add_action( ‘admin_head’ , ‘wpdocs_remove_post_custom_fields2’ );
function wpdocs_remove_post_custom_fields2() {
remove_meta_box( ‘stars-rating.postbox’ , ‘post’ , ‘normal’ );
}`