I’m building a website with WordPress and I’m using a child theme I created. I would like to add a class to all my images depending on their orientation. (.portrait or .landscape) I did it with javascript but I have no idea how to do it with php. (I don’t know very well yet how to use filter…
Tag: wordpress
How to give editor access to a custom made admin menu page?
I created an admin menu page in WordPress. But it is accessible only to admin. How to make it available to the editor also. function essof_add_setup_page() { add_menu_page( __(‘Essof …
WordPress | Loop different col-md
I know the wordpress loop is done like this:
Get Stripe Customer ID on WordPress / WooCommerce
I’m building an e-commerce website which is linked to a mobile app. I would like to store the stripe customer id of a customer on WordPress after his purchase/subscription Is it possible? How? Answer This is possible by using the field : wp__stripe_customer_id
docker wordpress container can’t connect to mysql container
I’m at a loss here as to not only why this isn’t working but how to further troubleshoot it. I’m new to docker, so could be something obvious, but I can’t find it. I did look over some other links …
how to add if current date is before a certain date condition as an if-statement parameter
I have a WordPress site and I have written a filter: function wc_add_string_to_price_newline( $price, $product ) { $product_id = $product->get_id(); if ($product_id == ‘1190’) { $…
Pull the headings and display it in a div in a list format
I have a dynamic container .product_section and I need to display the headings inside to div.toc in a UL list format. Hoping to have a script that checks every .product_section and creates a list …
JS files doesn’t work correctly in wordpress
As I’ve mentioned in the title, I’m having some problems with my js files. I’ve tested the scripts in the HTML template and works fine, but when I put them into the functions.php file there are some …
How to add a new field to my account details between other fields
With the snippet below we add a billing phone field to the account edit details. This works without problems, only we would have liked to add the new field between the email and the password change …
Can I add a button to this area of wordpress?
Can I add a button to this area of wordpress? picture of the section i want to edit How can I add a button with php to this field where there is a text and page editing screen? I want to do …