Fetch Designs
Forum Replies Created
-
Forum: Plugins
In reply to: [SendGrid] Using API keys in the settings.+1 – I am looking for this feature as well.
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Update to 3.10.0 crashed my websiteI have the same issue on my server running PHP 5.4.38. My localhost works fine running PHP 5.5.20.
Forum: Plugins
In reply to: [SEO Rank Reporter] ndefined index: dnload-csv errorIn the file wp-content/plugins/seo-rank-reporter/seo-rank-reporter.php line #689 needs to be changed from…
if ($_POST['dnload-csv'] == "Download CSV") {to this…
if (isset($_POST['dnload-csv']) && $_POST['dnload-csv'] == "Download CSV") {Another PHP notice this plugin is throwing that should be corrected is (same file)…
Undefined index: HTTP_REFERER in /path/to/wordpress/wp-content/plugins/seo-rank-reporter/seo-rank-reporter.php on line 190
if (stristr($_SERVER['HTTP_REFERER'], $kw_sengine_country) !== false && !is_user_logged_in()) {should be changed to…
if (isset($_SERVER['HTTP_REFERER']) && stristr($_SERVER['HTTP_REFERER'], $kw_sengine_country) !== false && !is_user_logged_in()) {I’m having this same issue. Any luck?
Forum: Plugins
In reply to: [Easy Photo Album] Show all albums on one pageTo get this working by default make sure your theme has an archive.php and content.php file in place. Otherwise you may just see a blank page.