Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Even though this post is about 5months old; if you’re still looking for answer you could edit the minagnews-parse-uploads.php file and look for the part where it produces the html table that starts around line 269 and go down to line 313-315 where there is an else clause:

    } else {
       echo ' ';
    }

    CHANGE TO:

    } else {
       echo 'NOT AVAILABLE';
    }

    Save file and you should see, NOT AVAILABLE, show up in place of the blank space. Of course editing the plugins code is not always the best idea as anytime the plugin gets updated you’ll lose your changes and have to re-edit the code after the update.

    If the “title” you want added to the link is the same for every file-type then you could edit the minagnews-parse-uploads.php file and look for the line $pattern = str_ireplace('[display]', $this->document_types[$docType]['display'], $pattern); in function interpret and add the title you want to appear in the link like so:
    $pattern = str_ireplace('[display]', $this->document_types[$docType]['display']." Your New Title Here", $pattern);

    Of course editing the plugin’s files is not always the best idea as anytime you have to update the plugin your changes will be lost unless you remember to re-edit the file after updating.

    I am having the same problem using v3.0.1: the featured image module has completely disappeared. It does not show up on the editor or media page. It does not even show up as a checkbox option under screen options for posts.

    It is missing in action. I too tried deactivating plugins and changing themes to no avail.

    Has anybody figured out how to fix this issue?

    I have also encountered this problem (though only parts of my content disappears not the whole thing), and have reproduced the problem on two different servers, neither having the above mentioned plug-in; so I don’t think it is a plug-in compatibility issue. Seems this is some type of bug between the program and the TinyMCE editor.

    I created a new page and posted a mid-sized (validated) html table into the editor. It views perfect, and i can publish it, and it looks fine. However, when i go back to edit it, half of the content disappears and the editor seems to have lost the data in transit between itself and the database. The same thing happens only more quickly if you hit Save rather than Publish. After the save and going back into the editor the data is lost.

    I’m going to try the above mentioned fix: disabling the WYSIWYG options in my user profile as the only plug-ins i have active are Search-Everything and Search Hilight.

Viewing 4 replies - 1 through 4 (of 4 total)