var x
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: MySql Find and ReplaceCan be so
UPDATE wpeix_posts SET post_content = replace(post_content, '[sc name=\"book-consultation-btn\"]', '[sc name=\"book-consultation-btn-new\"]');
or so
UPDATE wpeix_posts SET post_content = replace(post_content, 'book-consultation-btn', 'book-consultation-btn-new');Forum: Everything else WordPress
In reply to: Sliding Savings CalculatorI can recommend QuickForm. Makes calculators with any math and any design. But it takes a little experience. If you have any questions, create a topic in its support.
Forum: Fixing WordPress
In reply to: Trying to get malware out of siteYour site needs to be checked. But that doesn’t mean the problem is on it. This may be an extension in your browser that shows ads for being free.
Forum: Everything else WordPress
In reply to: Looking for plugin – multi select form with resultsI think the QuickForm plugin is what you need.
Forum: Developing with WordPress
In reply to: if-then conditional redirectMost likely, you will not find a ready-made solution. But your functionality is very simple and is done in one evening. To simplify the work, you can also use any form plugin, for example, it can be QuickForm. This plugin has a special customPhp field. But you will need programming skills.
Forum: Developing with WordPress
In reply to: need ajax helpYou have a vulnerability in your code: sql injection. You need to clear the POST data.
$number = (int) $_POST[‘number’];You also need to connect wp-load.php
require_once( $_SERVER[‘DOCUMENT_ROOT’] . ‘/wp-load.php’ );