sparkweb
Forum Replies Created
-
Forum: Plugins
In reply to: [FoxyShop] Subscription Datafeed is failingHi Chester,
Try changing your datafeed temporarily to a http://requestb.in/ address so you can see exactly what FoxyCart is sending. I _think_ that if they don’t have anything to send (like if there are no bad subs or CC’s about to expire) they might not send anything.
Let me know,
Forum: Reviews
In reply to: [Hide YouTube Related Videos] ExcellentYou can do this by setting a filter – instructions here https://wordpress.org/plugins/hide-youtube-related-videos/installation/
Forum: Plugins
In reply to: [Hide YouTube Related Videos] how to hide title ?According to http://stackoverflow.com/questions/18342536/how-to-hide-the-bar-at-the-top-of-youtube-even-when-mouse-hovers-over-it you can do
&showinfo=0So:
add_filter("hyrv_extra_querystring_parameters", "my_hyrv_extra_querystring_parameters"); function my_hyrv_extra_querystring_parameters($str) { return "wmode=transparent&showinfo=0&"; }in your functions.php file.
Forum: Reviews
In reply to: [Hide YouTube Related Videos] I confirm it doesnt work on WP 4.5.2I want to be very clear — this plugin is not designed to work with Visual Composer. It does not handle every video on the page but only processes videos that are being embedded with WordPress oEmbed.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Access rights for bulk editCan you post the code you posted to your functions.php file?
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Access rights for bulk editHi Ben, I get it now. Yes, there is a filter for the capability that you want to allow. You’ll set one for each CPT that you want to customize and it would work like this:
apply_filters("cfbe_menu_display_post", "my_cfbe_perm_setting"); apply_filters("cfbe_menu_display_page", "my_cfbe_perm_setting"); apply_filters("cfbe_menu_display_MYCPT", "my_cfbe_perm_setting"); function my_cfbe_perm_setting($str) { return "edit_posts"; }By default it uses manage_options which is an admin-only thing. But you could set it to
edit_postswhich I think is a author-level setting. Or maybeupload_files.Forum: Plugins
In reply to: [Custom Field Bulk Editor] Access rights for bulk editHi Ben,
This plugin only handles posts. User group rights are a whole other ball of wax and not something that I intend to target with this plugin. Sorry ’bout that.
David
I was not able to duplicate this behavior. Usually this indicates that another plugin might be interfering. I’m not sure that I can really help if I can’t see the issue on my own and test.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] No longer saving editsThe fields will always appear empty after reload – it doesn’t pull from saved values but will just allow you to set them. If it isn’t saving, there may be other issues going on. I’d recommend turning on WP_DEBUG mode (in wp-config.php) and see if you are getting any notices or errors.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Filter by authroHi Ben,
I have some pending code that I’ll release in a few days for this. For now, open up the main plugin file and put this code around line 104:
if (isset($_GET['author'])) $args['author'] = (int)$_GET['author'];
if (isset($_GET['author_name'])) $args['author_name'] = $_GET['author_name'];Add “&author=X” or “&author_name=Y” to the querystring where X is the ID of the author or Y is the nicename of the author.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] embed_defaults size not working anymoreThe default method had to be unregistered as it caused the plugin not to function.
You could use the plugin filter and possibly do something like this:
add_filter("hyrv_extra_querystring_parameters", "my_hyrv_extra_querystring_parameters"); function my_hyrv_extra_querystring_parameters($str) { return "wmode=transparent&width=650&height=390&"; }I’m not sure if that would work, but it sure might.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin isn't WorkingProbably, but that’s out of the scope of what this plugin does. 🙂 I’m not sure what you’d need to do to make that happen.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin isn't WorkingThe plugin won’t work in this case since you are putting the embed in directly instead of using WordPress’ oembed functionality. Here’s some details on oembed: https://codex.wordpress.org/Embeds
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin isn't WorkingThe plugin won’t work in this case since you are putting the embed in directly instead of using WordPress’ oembed functionality. Here’s some details on oembed: https://codex.wordpress.org/Embeds
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Paging feature not workingThere are a few ways to see more records, but unfortunately it’s a tiny bit manual.
Add &posts_per_page=x to the querystring or &page_number=x to the querystring. That should get you the data you need.