paulwillen
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Don't send email notifications for Specific OrdersDoes anyone have a clue how to disable all emails for a specific order?
It’s been a month and no reaction to this thread sadly..Forum: Plugins
In reply to: [WooCommerce] Don't send email notifications for Specific OrdersIn Addition – Also a statuschange from this order shouldn’t be emailed to the customer. Absolutely no emails concerning this order should be sent.
Forum: Fixing WordPress
In reply to: Where is the register button in WordPress?You’re welcome!
Forum: Fixing WordPress
In reply to: Where is the register button in WordPress?Go to the General options:
https://[yoursite.com]/wp-admin/options-general.phpCheck the option “Anyone can register” and save the settings.
Now when someone goes to:
https://[yoursite.com]/wp-admin they see the loginbox, and below the loginbox there’s the text “Register”Or registrations can go directly to the Url:
https://[yoursite.com]/wp-login.php?action=registerForum: Plugins
In reply to: [Plugin: Dave's WordPress Live Search] search results ordered by relevancySadly it doesn’t seem to work for me.
When activating Both plugins I don’t get to see any LIVE-search results.
When activating ONLY Daves’ plugin I get to see the live-search results and when activating ONLY Relevanssi I get to see better search results.I get to see the ajax-loading circle in the search-box. Just no results are shown.
It doesn’t seem to matter which theme I use twentyten & thematic framwork both don’t show any results.
Any thoughts how to solve this or what I can do to solve it?
Forum: Fixing WordPress
In reply to: custom query_posts excluding a certain meta_key@keesiemeijer That’s a GREAT solution! Thanks for that! It worked right away!
Forum: Hacks
In reply to: Get Published Date and TimeHi Cais.
Thanks for following up with me. I really appreciate that!
I was able to solve my problem with this:$origpostdate = get_the_date($d, $the_post->post_parent); $origposttime = get_the_time($d, $the_post->post_parent); $dateline = $origpostdate.' '.$origposttime;
It might not be the best solution, but it works without any problems for me.
Thanks again…
Forum: Hacks
In reply to: Get Published Date and TimeOh, I’m not using this code in a template file, but in a plugin.
Forum: Hacks
In reply to: Get Published Date and TimeHi,
Thanks for your comment, but sadly I dont Use the_loop.
I get a post by:$the_post = get_post($post_ID);
So I don’t loop through my posts.
Is there any way around using the_time() without using the_loop?Because that would solve my problem I think.