nmerii
Forum Replies Created
-
Forum: Plugins
In reply to: [NM Gift Registry and Wishlist Lite] Free paiementPlease contact me on [email protected] with this request as it is a custom request.
Please follow the instructions in this article and let me know if the problem still exits.
https://nmgiftregistry.com/displaying-and-formatting-dates-and-the-datepicker/Forum: Plugins
In reply to: [NM Gift Registry and Wishlist Lite] WPML translationAlthough I haven’t tested my plugin with wpml, I don’t see why it shouldn’t be compatible. My plugin is translation ready, with a .pot file in the languages folder containing all the translatable strings. You simply need to generate .mo and .po files in the languages you want from this .pot file. wpml should then be able to scan the .mo files and recognise the translatable strings. Please check your wpml settings very well to make sure this is possible. Also read their documentation on how to recognise plugins translation strings.
If all fails and my plugin is still not wpml compatible, plese let me know so that I can look into it further.
Forum: Plugins
In reply to: [NM Gift Registry and Wishlist Lite] WPML translationHello,
I haven’t tested my plugin with wpml so I can’t speak about it’s compatibility. But you can check this since you’re in the process of setting up a wpml store.
If you want me to investigate further, if you have a staging or demo site that I can test the problem, send the login details to me at [email protected].
The item would still show on the gift list if viewed in the wishlist account management page. However it would not show on the wishlist page where the add to cart button shows. Are you getting different results?
You must also make sure that the ‘quantity’ and ‘purchased quantity’ checkboxes are ticked in the settings. If any of these checkboxes is not ticked, the purchased items may not been hidden.
Simply go to the NM Gift Registry settings page, the modules tab and the ‘items table’ section.
At the bottom of the section you tick the checkbox labelled ‘Hide fulfilled items from the table on the single wishlist page’.
Forum: Reviews
In reply to: [NM Gift Registry and Wishlist Lite] GoodWow that was quick. This is the first one star review I’m getting for no justified reason. You asked for support and I gave you a speedy response which I try to do with all my customers. We started an email conversation, I replied your last email and was waiting for your feedback. But before I knew it you wrote a review that there was no solution and you were blocked. In what way were you blocked? And how was there no solution? Could you explain in this review? And how could I give you a speedy response if I wasn’t interested in helping you solve your problem.
I don’t know how familiar you are with the wordpress platform but you should try to be patient. This is not the way it works. Your review contrasts with every other review I’ve had for my plugin. I work very hard to make my customers happy and writing a one star review in the middle of a conversation with a plugin author is not the way to go.
Hello @falconstallion786,
Simply use the
nmgr_show_add_to_wishlist_button
filter.For example to show the button only on product pages, use the example code below, add it to your functions.php file:
add_filter('nmgr_show_add_to_wishlist_button', 'show_nmgr_add_to_wishlist_button'); function show_nmgr_add_to_wishlist_button($bool) { if(!is_product()) { $bool = false; } return $bool; }
Forum: Plugins
In reply to: [NM Gift Registry and Wishlist Lite] Rest apiPlease send me an email regarding this question to [email protected] as this is not a support question.
Hello Jon,
The gift registry search function has been designed to work just like wordpress’ search function which lists all posts if there is no search query. However I have noted your suggestion and would release an update that would allow the search to list no gift registries if no search term is entered.
Forum: Reviews
In reply to: [NM Gift Registry and Wishlist Lite] A needed resource@diogopetermann
Sorry, my bad. I was looking at something else. It’s already in the review. Thanks once again.Forum: Reviews
In reply to: [NM Gift Registry and Wishlist Lite] A needed resource@diogopetermann
Thanks a lot. Please put this in the review section so others can see it. It would be hidden here in the support section.Forum: Plugins
In reply to: [NM Gift Registry and Wishlist Lite] Add input text when adding to gift listFirst of all have you been able to get the information from the database? There should be a normal way that the plugin you are using to save the information allows you to get it. Also where exactly in the admin do you want to display the information?
Forum: Plugins
In reply to: [NM Gift Registry and Wishlist Lite] Add input text when adding to gift listOn the plugin settings screen,
1. Click on the ‘Modules’ tab.
2. By default you should be on the ‘add to wishlist button’ settings.
3. Scroll down and look for the setting ‘Ajax enabled on single product pages’. Untick this setting.
4. Save the plugin settings.