Forum Replies Created
-
AuthorPosts
-
Someone else on here mentioned you needed to enable the LayerSlider and re-install the theme.
I did so and now I can use the editor again.
Not sure if it was the enabling of the LayerSlider or theme re-installation that did it.It has been working for a while now without my “hack”.
The fix is no longer required. My theme and WLM are now working fine together after a recent update (not sure if it was the theme or WLM that fixed it).
You’re using parentheses around the _oembed, it should still be single quotes :)
But if you’re not sure what you’re doing, it’s not really a good idea to mess around with the SQL. At least I hope you’ve remembered to take a backup.
It could be due to the quotes around the %_oembed%.
It has to be normal single quotes.
Ok I figured it out.
As I thought it was a caching issue. WordPress caches the video player on the first hit, so if the access settings for the video was wrong, then it won’t display the video player even though you fix the video access settings afterwards.
It can be fixed by going directly to the database (if you’re not sure what you’re doing, please remember to backup first!!!!!). I use phpMyAdmin for this.
1) Find the table named “wp_postmeta” (in my case I have prefixed my tables for security measures, so my table name is actually a bit longer)
2) click on “SQL”
3) Insert the following select statement:
SELECT * FROM wp_postmeta WHERE meta_key like ‘%_oembed%’This will bring up all the cached embedded players. The meta_value field contains the player, so it should be quite easy to find the video that is not working and simply deleting the row (don’t worry, WordPress will generate a new entry the next time you visit the page and your player will be inserted correctly!).
I have a lot of videos in my site (hosted on Vimeo) so used the following SQL to find the exact row that messed up:
SELECT * FROM wp_yasd_postmeta WHERE meta_key like ‘%_oembed%’ and meta_value like ‘%6769%’(the number 6769 is part of the vimeo video ID for the video messing up, you should of course insert part of the url/ID for the video that is messing up in your case)
Hope it helps..
- This reply was modified 9 years, 7 months ago by rap.
Hey Elliot
Did you send me an email regarding the plugin? I’ve sent out the plugin to a couple of people, but can’t remember if you were one of them :)
/Rasmus
I’ve tried both types of URLs. That doesn’t make any change.
However you are a bit right about the settings. Originally the privacy settings were wrong on this one video, however after I changed it, it still didn’t work.
So is there some kind of “caching mechanism”? Originally I didn’t think that WordPress did anything other than just wrap the url in a player, but it must somehow communicate with Vimeo if it will display a player or a link depending on the settings.
If WordPress indeed does communicate one way or another with Vimeo (and Youtube) it would make sense to somehow cache these settings.
Do you know if something like this is happening? The privacy settings should be correct now, however I’m still only seeing the link for one (well actually two) of the videos (out of 28).
1) Yes it works with the default editor, but then my site will not look good (there’s some full width issues!)
2) I’ve chosen Wishlist Member for all my membership sites for a reason. I like it better :). Switching one of them to s2member is not an option.
HOWEVER: I’ve had my developer create a plugin that fixes this issue.
If you’re interested in the plugin reach out to me here: http://retiremyass.com/contact/
Here’s the latest about the issue that I heard from the Wishlist Member support:
————————
I followed up with the development team and they explained that the function that handles protection is function Process() located at wishlist-member/wpm.phpWe are hooking that function in the WordPress Filters like these:
add_filter(‘page_template’, array(&$WishListMemberInstance, ‘Process’));
add_filter(‘single_template’, array(&$WishListMemberInstance, ‘Process’));In the case of the “Advance Layout Editor” the page_template and single_template aren’t being called so our function process is not initiated.
The developer suggested if there is a filter on the theme that is being called similar to the WordPress page_template/single_template, you may be able to hook our function Process into that.
This falls into the category of customization and we are unable to offer hands on or in-depth assistance with customization. But we hope this helps to point you in the right direction.
————————I’ve also created a feature request called: “Wishlist Member compability” (messed up the spelling should be “compatibility” but can’t see how to change it :)).
I would really like to get this working (I’m even willing to pay for it).
What is the latest news about this?
I just migrated some courses to enfold, and only after the migration did I notice that Wishlist Member didn’t work with Enfold.
If you can’t provide it, can you at least give me technical explanation of the problem and I’ll have a developer do a fix for me.
-
AuthorPosts