slapshot36227
Forum Replies Created
-
Forum: Plugins
In reply to: [WP YouTube Lyte] Higher quality previews?Wow, exactly what I was looking for. Thanks so much.
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Album Art Gone with WP UpgradeThanks for the work you’re doing with this plugin.
In the meantime, is there a manual fix for this? I don’t mind editing this code in this plugin or the wordpress files to remove the change that caused this.
Forum: Fixing WordPress
In reply to: Restrict Direct Access to Certain PagesThanks again ??
Forum: Fixing WordPress
In reply to: Restrict Direct Access to Certain Pages^^Edited
Forum: Fixing WordPress
In reply to: Restrict Direct Access to Certain PagesI have gotten the first half to work but the second part:
|| empty( trim( $_SERVER['HTTP_REFERER'] ) )
gives me this error: “Can’t use function return value in write context in…”
I changed the code to the following, based on what I found here: https://stackoverflow.com/questions/4192281/error-message-fatal-error-cant-use-function-return-value-in-write-context-i
$test = trim($_SERVER['HTTP_REFERER']); if ( ! isset( $_SERVER['HTTP_REFERER'] ) || empty($test)) wp_redirect( home_url() );
Everything seems fine but let me know if you see any problems.
Thanks.
Forum: Fixing WordPress
In reply to: How do I pull fields from URL into a Page?Even better, just to be safe. Although it seems to be missing a close to the second parentheses. I changed it to this:
if (isset( $_GET['name'] )) $name = $_GET['name']; else $name = ""; echo $name;
Thanks for your help, I really appreciate it!
Forum: Fixing WordPress
In reply to: How do I pull fields from URL into a Page?Thanks, way easier than I thought.
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Music player not working in FireFox on a MacProblem solved! I was having an issue with my ogg files… apparently the conversion method I was using corrupted the files and so there wasn’t actually a problem with the player. For anybody having similar issues with compatibility, try this converter to test with: https://media.io/
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Music player not working in FireFox on a MacI just did a fresh WordPress install on another domain name… All I did was install this plugin and use a sample music file to test and the problem is still occurring. Here is the domain (scroll down): https://www.treadcarelessly.com.
The version of Firefox I am using is 21.0 on a Mac. I’d be curious to know if this works on Firefox on Windows…
Forum: Fixing WordPress
In reply to: How to remove navigation links from a page other than the home pageI’d also like to mention that in the individual page settings, I have specifically selected (no parent) so the only reason that HOME may be on top of MY ACCOUNT is that I have selected HOME to be a static home page (this is not a blog).
I am open to any solutions, plugins as well. Thanks.