Chris Cash
Forum Replies Created
-
That solution does help, however, in this case I need the decimal places because most totals are not even dollar amounts. Can I please keep this in this thread for others that have the same issue?
Same problem with amounts over 1,000. Any hotfixes?
Forum: Plugins
In reply to: [Sweet Captcha] Missing image icon showing inside sweet captcha frameTo map specific pages you will need to edit the file domain-mapping-system/dms.class.php using the plugin editor and change the code as follows in
private function setCurrentDomain()
Find:
$this->domain = $_SERVER["HTTP_HOST"];
Replace with:
if ($_SERVER["REQUEST_URI"]=='/') { $this->domain = $_SERVER["HTTP_HOST"]; } else { $this->domain = $_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"]; }
Also, in the plugin settings, make sure to include a trailing slash “/” after the specific page name in the url. Example: domain.com/page/
Forum: Themes and Templates
In reply to: Call specific page content into WP templateThis should work for you: https://css-tricks.com/snippets/wordpress/embed-a-page-inside-a-page/
Forum: Fixing WordPress
In reply to: Warning: TinyMCE ExploitThanks for replying. Any ideas on whether this is a WordPress or TinyMCE exploit? Sure would like to know how they were able to gain access.
Forum: Fixing WordPress
In reply to: Warning: TinyMCE ExploitThat file is one of three php files that are in that folder. They both contain wp_addfilter references along with obfuscated code. The folder was not world writeable.