Please turn JavaScript on

Want to stay in touch with the latest updates from ? That's easy! Just subscribe clicking the Follow button below, choose topics or keywords for filtering if you want to, and we send the news to your inbox, to your phone via push notifications or we put them on your personal page here on follow.it.

Reading your RSS feed has never been easier!

Website title: WordPress Development Stack Exchange

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  22.59 / day

Message History

I have to trigger an ajax call based on a custom field changes on checkout form which is to add a discount. But if I call the hook to add discount into subtotal of the cart it does not do anything. Note that ajax call is working fine. Even if I use woocommerce_cart_calculate_fees hook outside of ajax callback function it worked.

add_action('wp_ajax_test', 'test'); add_act...

Read full story

I have a field in which I add the name of the record in the original language. And I translate the title into another language. When adding a new record, I need to check this field for duplication in other records. I did it thanks to this code, but the verification takes place only after the publication of the record.

How can I make sure that the verification is carrie...


Read full story

I originally begun my wordpress site using a psudonym. Over the past few years I have been attributing my own name to all articles and have had the author name options switched off.

Now I'm changing theme I want to get the benefit of having the correct author name show up automatically against each new post, and if possible changing all the old posts to this new autho...


Read full story

I want to display some texts in specific category in single post based on category in wordpress.. how can i do that

for example posts in news category display some text.(not all category)

Thank you


Read full story

I have set up a custom WP_Query loop for a page template. I am implementing an infinite scroll method via ajax, and the call is successful, but for some reason I cannot get the query to like the paged arg in the loop. It just won't pull anything.

Here is the code for my ajax action:

// AJAX Infinite Scroll function txcap_ajax_scroll() { $args = isset( $_POST['q...

Read full story