masterbip
Forum Replies Created
-
This is a very awesome plugin, but it looks like this is not resolved…
If the plugin can’t handle (save/show) custom fields (like default “Country” DropDown or in my case “Courses” Cursom DropDown) in admin profile custom fields …
H
ow can we do that?Thanks in advance!
Same thing here. Just in case.
Also let me say that in the admion slider list I see “7” slides, but in the home it only shows me 6. I Can’t see last changes. Obviously I deleted cache, tried another browser ….
Thanks.This worked and help a lot. Many thanks @website-update-services
He deshabilitado dos plugins:
– WooCommerce Chilean Peso + Chilean States
– Woo Checkout Field Editor ProAhora el error desapareció y el sistema funciona mejor que a la perfeccion.
FA-BU-LO-SO !!!!
Forum: Plugins
In reply to: [WooCommerce Quantity Increment] Compatibility with WooCommerce 3.0.1It is compatible, I thought don’t but yes.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] How do i get wishlist url in templateHi there. That code didn’t worked for me. I use instead
<?php echo get_permalink(get_option('yith_wcwl_wishlist_page_id')); ?>
Thanks
Forum: Plugins
In reply to: Menu description wysiwygSe que se puede permitir html en la descripcion de los menu:
/* Contenido html en descripcion de menu */ remove_filter( 'nav_menu_description', 'strip_tags' ); add_filter( 'wp_setup_nav_menu_item', 'mb_wp_setup_nav_menu_item' ); function mb_wp_setup_nav_menu_item( $menu_item ) { $menu_item->description = apply_filters( 'nav_menu_description', $menu_item->post_content ); return $menu_item; }
Ahora estoy buscando la forma de agregar el wysiwyg en dicho campo (Obviamente sin usar plugins!). Si encuentro la manera la comparto aqui. Me da flojera ahora escribir en ingles dado que estoy concentrado trabajando, sorry.
- This reply was modified 8 years ago by masterbip.
Hi there. Do you have a smaller badge? I thing the size is too big for some sites. Maybe more options … thanks.
Forum: Plugins
In reply to: [WP-PostRatings] Translation not workingHi there. The plugin actually downloaded the translation file (inside wp-content/languages/plugins/wp-postratings-es_ES, PO and MO) But I am still seeing english lines in my frontend like “No Ratings Yet” What can I do? Thanks!
Hi there. I deleted all translation files related to ES and your plugin wp-review… I try again poedit in files wp-review-es_ES po and mo … and now it is working!!!!
I really don’t know what happened. Now it is working … just a single string took me hours!!!
But it is something I did wrong (don’t know what), not your plugin.
Thanks a lot, your plugin and suport rocks!
Yeah … i tried the plugin you suggest aldo LOCO and also the poedit with the file inside plugin language folder and inside wp-content/languages/plugins folder, with es_ES.mo and wp-review-es_ES.mo names withour luck … But for sure I don’t want to use a plugin to translate a single string …
I just simply want to translate the front end string “User Rating” wich I found in file box-templates/default.php line 113
The string is fine
<?php _e( 'User Rating', 'wp-review' ); ?>
But no matter what I can’t translate it!Any clue before ask in your forum?
Thanks again!
Thanks for the quick Answer. If users asked for this feature in the past … i will wait for your quick solution to buy premium version. Thanks again.
Forum: Plugins
In reply to: [WooCommerce Products Per Page] Change dropdown to capital letterJeroen. You are Da Man!!!!
This is the final code:
add_filter( 'wppp_ppp_text', 'wppp_custom_text', 10, 2 ); function wppp_custom_text( $text, $value ) { if($value=='-1'){ return 'Todos'; } return '%s'; }
Awesome. Many Many thanks!!
Forum: Plugins
In reply to: [WooCommerce Products Per Page] Change dropdown to capital letterThat’s awesome but got a question.
I am using (from the link above)add_filter( 'wppp_ppp_text', 'wppp_custom_text', 10, 2 ); function wppp_custom_text( $text, $value ) { return '%s'; }
So i am able to get only the number.
But what about the -1 option “All of the products” In spanish it says “Todos los” should say only “Todos”
WHen I can get rid of “los” to get only “All” or “Todos”??
Thanks!!!