hide “Open in New Tab” checkbox in link field

Site-Wide Checkbox Hide You can add a simple function to your functions.php to change its visibility (and will also set the default checked state to false): function disable_open_new_window() { ?> <script type=”text/javascript”> jQuery(document).ready(function ($) { $(‘input#link-target-checkbox’).prop(‘checked’, false); $(‘#wp-link .link-target’).css(‘visibility’, ‘hidden’); }); </script> <?php } add_action (‘after_wp_tiny_mce’, ‘disable_open_new_window’); This will change the visibility of that checkbox … Read more

HELP PLEASE PHP slider css

The main problem appears to be related to the path of your image. It’s likely that the path is now incorrect due to the introduction of a new directory in your updated URL called shionhouse-master. To fix it, ensure that you’ve included the accurate file path for your background image. You can use your browser’s … Read more

Convert HTTP_Request2 to wp_remote_post

The issue might be with how you’re passing the XML data in the request body. In the wp_remote_post function try this” $xmlCustomerDataByAuthorLicenseID = ‘<GetCustomerDataByAuthor><AuthorID>ABC123</AuthorID></GetCustomerDataByAuthor>’; $response = wp_remote_post( $urlCustomerDataByAuthor, array( ‘method’ => ‘POST’, ‘headers’ => array( ‘Content-Type’ => ‘text/xml’ ), ‘body’ => $xmlCustomerDataByAuthorLicenseID, ‘sslverify’ => false ) ); if (wp_remote_success($response)) { $xmlDataParsed = simplexml_load_string($response[‘body’]); foreach ($xmlDataParsed->{“Customer”} … Read more

Favicon not showing in Google search results

I always use Real Favicon Generator to generate favicon images for my websites, and have never had any issue. Their favicon checker did have several issues come up for your site: https://realfavicongenerator.net/favicon_checker?protocol=https&site=discovernavarra.com. I suspect that the redirect on favicon.ico may be the issue, though I do not know for sure. I never use a provided … Read more

Connecting WordPress settings to domain

There may be a problem with the actual production database values for siteurl and home. Depending on your host and url rewrite rules and installation you probably need to make sure the values start with the protocol, http:// or https://.

How can we upload custom page files?

WordPress is designed to use themes or plugins to output the final HTML, CSS, and JavaScript. You don’t normally directly include an HTML file, because it won’t have a way to connect to WordPress to do things like including an Elementor header or any content you can edit in the Editor. Instead, for this type … Read more