sinebyte
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] How can I create a form submission via codefunction mde_send_post_request(){ $url = 'https://localhost/wp-json/contact-form-7/v1/contact-forms/181/feedback'; $response = wp_remote_post( $url, array( 'method' => 'POST', 'headers' => array( 'Content-Type' => 'application/x-www-form-urlencoded' ), 'body' => array( 'your-name' => 'user', 'your-email' => '[email protected]', 'your-subject' => 'hello', 'your-message' => 'whats happening', ) )); return $response; }
- This reply was modified 4 years, 1 month ago by sinebyte.
Forum: Plugins
In reply to: [Widget Logic] cat_is_ancestor_of does not work anymoreWhat happened about this, I have the same:
is_product_category( ‘hinges’ ) || cat_is_ancestor_of( 16, get_queried_object()->term_id )It is not resolved, I will respond shortly
Hi Phil
We disabled ‘enable standard tracking’ a few days ago just to see, as it was not working when it was ticked. I put it back on now.
I have the google tag manager for wordpress plugin on the website, also your plugin, as well as the tag assistant in the chrome browser. tag assitant: https://ibb.co/748Jq5z
I have a test payment gateway on the site but I read here that I cant be logged in as admin to run test purchases as these are ignored by the plugin (as admin) and thus wont record the transaction, so not sure how I test it out.
Forum: Themes and Templates
In reply to: [Bento] Bento Child Theme Breaks Mobile Menu Close/X Dash IconUsing child theme config plugin fixes the problem (thanks howdy_mcgee). for some reason the child theme zip file from the bento website enques the parent style before the child, whereas the child theme plugin did not do this when it created a child, and the menu icons were not broken.