jreade
Forum Replies Created
-
Same problem. Any Fixes?
Allowed the permissions temporarily to allow turning caching on/off, but after write permissions for wp-content are turned off caching cannot be turned on/off again. Throws errors about failing to open file stream.
Forum: Plugins
In reply to: [BuddyDrive] Requested Feature: Member notifications+1 I would like that feature as well. With the possibility of turning off the feature if not wanted.
Forum: Plugins
In reply to: [BuddyDrive] Prevent members to upload their own filesSame question. Though, I want to allow upload in groups only.
Forum: Plugins
In reply to: [BuddyDrive] Only allow Admins to upload documentsI have the same question. I would also like to know if there is a way to restrict uploading to only the members of certain buddypress groups.
Thank you!
Forum: Plugins
In reply to: [WooCommerce] “Invalid product.” error at checkout variable productsI have the same issue. Any luck solving it?
Did you end up having to give the user “edit posts” ?
What happened? I’m having a similar issue.
Thank you for your feedback.
Forum: Plugins
In reply to: [WooCommerce] The wrong number of comments is displyedForum: Plugins
In reply to: [BuddyPress Global Search] Conflict with genesis theme@buddyboss Was this issue resolved?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Video PodcastingThis discussion has moved to github. https://github.com/hlashbrooke/Seriously-Simple-Podcasting/issues/84
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Video PodcastingAll,
I think I might have found a solution (built-in to the plugin) to change the audio player to a video player. I found this filter reference.
So I added the following code to my functions.php (should be moved to a custom plugin in the future):
function replace_ssp_audio_player_with_video_player( $player, $src ) { $player = wp_video_shortcode( array( 'src' => $src, 'preload' => 'none' ) ); return $player; } add_filter( 'ssp_audio_player', 'replace_ssp_audio_player_with_video_player', 10, 2 );
Forum: Plugins
In reply to: [MB Custom Post Types & Custom Taxonomies] categories supportrilwis has released a new version of the code that adds support for the WordPress predefined taxonomies Category and Tags.
However, there is still an issue with line 87 (89 in the new version) in \inc\post-type\register.php
$data = 1 == count( $value ) ? $value[0] : $value;
Here is some code to fix the issue.
Replace this:
$data = 1 == count( $value ) ? $value[0] : $value;
With this:if ($key != 'args_taxonomies' ) $data = 1 == count( $value ) ? $value[0] : $value; else $data = $value;
This will probably be incorporated into the next version of the plugin.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Video Podcasting+1
I would also love it if you were to add Video Podcasting.
Forum: Reviews
In reply to: [Seriously Simple Podcasting] Fantastic plugin for PodcastWhat’s the status on the video support?
OK, let me know if you run into anything interesting.
Also be careful when you’re doing the cut-and-paste of content. Especially of the images and links. Things may change where they are located and the src’s of images might point to your old site which will make the images appear to be loading correctly until you turn your old site off and they are no longer there. You have to replace all images with those from the Media Library. There are ways to mass import media into the library. Let me know if you want more information. Are you hosting wordpress yourself?