rellison959
Forum Replies Created
-
I am seeing this same issue. Any news would be greatly appreciated.
Forum: Plugins
In reply to: [WPtouch - Make your WordPress Website Mobile-Friendly] Custom Meta DataOK… made some progress… it IS pulling in the custom meta data… however it’s not converting url.mp3 to audio player. Gotta be a solution for mobile browser mp3 audio player. Ideas?
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] overlay/push not openingnoConflict used in the js for menu was causing $ used in DOM calls to not work. Replaced $ with jQuery and all is working.
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] overlay/push not openingI found that there is interference / incompatibility with another plugin I am using. Owl Carousel, which works fine, but I get error for (not a function) on it’s DOM call. If I kill the owl call the menu works., but obviously kills slider.
What version of jQuery is acceptable? I am on
https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js
which I am calling in functions.php.Thanks!
Forum: Plugins
In reply to: [Amazon Web Services] SSLv3 to TLS changesMy interpretation is the connection from WordPress Plugin (application) to the Buckets would fail so uploading and delivery to and from S3 buckets would no longer work.
“You are receiving this email because some of your users are accessing Amazon S3 using a browser configured to use SSLv3, or some of your existing applications that use Amazon S3 are configured to use SSLv3. These requests will fail once AWS disables support for SSLv3 for the Amazon S3 service.
The following bucket(s) are currently accepting requests from clients (e.g. mobile devices, browsers, and applications) that specify SSLv3 to connect to Amazon S3 HTTPS endpoints.”
I really hope someone who can help verify whether these plugins will cause failure chimes in soon!!
Just found this to add standard post type categories to custom post types.
add_action( 'init', 'wpse6098_init', 100 ); // 100 so the post type has been registered function wpse6098_init() { register_taxonomy_for_object_type( 'category', 'your_custom_post_type' ); }
ANY luck with this? I am in the same situation. I use the PE on a custom post type and need to have it move those ‘posts’ to a different category, but the cats for the CPTs do not show in the Post Exp. settings.
PLEASE help!