Scriptonite
Forum Replies Created
-
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] RDF feedI’m not sure, can you send me the URL and I’ll take a look?
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Didn't fix feedSorry the plugin was not able to fix your issue, i’m glad you got it working.
Forum: Plugins
In reply to: [WP 2 Step Authentication] 3rd Party Connection?It is self contained for the email verification and will also be self contained when the mobile app is finished, to send sms it uses our own service wp2step.com. Your site sends no login details and wp2step keeps no information of any kind. All login data is verified on your site, wp2step simply receives the pin code, phone number, and API key to verify your account with them to ensure you are authorized to use the wp2step services. Great question, I will add this to our FAQ and the plugin FAQ as well.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] 3.8 upgrade broke Fix My Feed RSS RepairYour feed appears to be valid and displays correctly in my reader. Can you please give me a description of your issue?
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Feed still not workingThis looks like an issue with the NextGen Gallery Plugin, I would disable it to see if that resolves the issue. You can also try this code in your theme functions file to see if it fixes it.
add_filter( "the_content_feed", "the_rss_feedfix_2" ); function the_rss_feedfix_2($content){ $pos = strpos($content,'<?xml version'); $content = substr($content, $pos); return $content; }
If the nextgen footer is in fact causing the issue you can also perhaps use the remove_anonymous_object_filter like in the article here:
https://wordpress.stackexchange.com/questions/57079/how-to-remove-a-filter-that-is-an-anonymous-objectwith:
function rss_ngg_footer_disable(){ remove_anonymous_object_filter('wp_footer','C_Photocrati_Resource_Manager','print_marker'); } add_action('wp_footer', 'rss_ngg_footer_disable', -2);
Let me know if either of these work for you.
Forum: Plugins
In reply to: [Simple User Profile] Suggestion : hide by roleProfile fields by role will be available in the next update.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Feed still not workingThis is a different issue than my plugin is designed to fix. I am guessing you have found the issue however because your feed does appear to be working correctly.
Forum: Plugins
In reply to: [Music Request Manager] List of songsNot yet, this is planned for the next update. I will also be adding localization as well so the plugin will follow the language of your wordpress.
Forum: Plugins
In reply to: [user files] Is it possible to upload to Google Drive maybe with some plugin?The plugin itself has no limit, it simply follows the restrictions set by your server. Depending on your hosts restrictions, you can change the upload max and post max in php.ini to increase your upload limits to any size you would like.
Forum: Plugins
In reply to: [user files] Plugin appears broken by PHP 5.3Line 1 is simply <?php, I don’t see how this could have broken anything. This has been tested from php 5.2 to 5.4 and has worked without issue. Updates are in the works but I have been busy and don’t know when they will be ready.
Forum: Plugins
In reply to: [Music Request Manager] I'm a noobYes, you need to place the shortcode [music-requests] into your request page to display the request list.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Feed not workingDid you go to tools>RSS Fix in the admin menu and hit apply?
Also, every time you update wordpress you need to go in and re-apply the fix. This is a core patch so it is not automatic.
If you still need assistance please let me know.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Don't work with different language feedYour feed looks ok, if you have not changed anything or fixed it already chances are you do not have a feed reader for your browser. Google “feed parser extension for YOUR-BROWSER-TYPE” and you should find an extension to view it correctly in your browser.
Forum: Plugins
In reply to: [user files] "Image cannot be loaded. Make sure…"This is a new error I have not heard of, please check your folder permissions in both your server settings and folder chmod.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Plugin did not fix my feedI have sent you a follow-up email to the address you have posted above.