sparkweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Huge IT Video galleryNope, this plugin only edits the WP oembed functionality. I imagine those other plugins are building their own embeds.
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Stop Sale To Certain StatesHi Ryan, (sorry about the delay, for quickest support, please email me from the FoxyShop site)
I think you’d want to use this snippet https://wiki.foxycart.com/v/2.0/snippets/locations_modfication to remove Washington as a shipping state and only fire it if product x, y, or z is in the cart.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Can't get it to work.Well you shouldn’t need to put any code on your site. If you want to add something to the output, try some of the code samples here: https://wordpress.org/plugins/hide-youtube-related-videos/installation/
If still not working can you post a link?
Forum: Plugins
In reply to: [FoxyShop] Foxycart Form IntegrationHi Andy, I answered via email, but I’ll just mention briefly that you’ll probably want to look at accessing the FoxyCart cart json directly to pull in the current cart values. Docs here: https://wiki.foxycart.com/v/2.0/javascript
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Can't get more parameters to work eitherYup, it looks like in the initial code posted it wasn’t passing through the source. Your code looks like it should work nicely.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Extra Characters added when inserting valueWe are using
update_post_meta()to save the details to the database and I think that WordPress must be catching the serialized data and converting it to a string because it knows that what you are trying to set is serialized data. The solution is to set this content using a regular database query and not using WordPress’s methods. So I think you are going to be stuck updating through phpMyAdmin.Forum: Plugins
In reply to: [Hide YouTube Related Videos] Can't get more parameters to work eitherDeactivate the plugin and reactivate it. This resets the oembed cache and the new settings will show up. I loaded in your code and it worked once I cycled the plugin activation.
Forum: Plugins
In reply to: [FoxyShop] Break Loop So I can Query a Post in single-product.phpWould it work to just get the page contents from the external page like this: https://codex.wordpress.org/Function_Reference/get_post
Something like:
$internal_post = get_post($internal_post_id); echo $internal_post->post_content;Forum: Plugins
In reply to: [Custom Field Bulk Editor] Request: Include meta data in searchThanks for the suggestion. I’ll definitely consider it, but I just don’t have the space to be adding functionality to the plugin at this time. I think your best bet is to edit the db directly. You can download the adminer plugin to get access to the db and then just do a query like this:
UPDATE wp_postmeta SET meta_value = 'Winter' WHERE meta_value = 'Christmas' AND meta_key = 'Prop'Easy-peasy 🙂
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Posts are not saving new data IIHi, I am not sure what the user on the other thread did to solve this issue. My recommendation is to check your database to see what your data actually looks like. The easiest way to do this is to install the plugin Adminer and then browse to the wp_postmeta table. Then you can look at the post id data directly.
Hope this helps.
Forum: Reviews
In reply to: [Hide YouTube Related Videos] Good support!!If you look at the other reviews you can see that there are many people for whom the plugin works successfully so there is some reason that it is not working on your website. I would be very happy to look at your site and see I can help you solve this problem if you can tell me what your website is.
0-star reviews like this are a bit frustrating to a developer who is trying to help.
Forum: Reviews
In reply to: [Hide YouTube Related Videos] FAILHmmm… I just tried this on my local dev with a YouTube video posted today and it worked with no problem. Can you send me a link to your page? web @ sparkweb dot –net,. if you don’t want to post here.
Forum: Reviews
In reply to: [Hide YouTube Related Videos] FAILThe plugin only works if you are using oembed. It sounds like the Visual Composer is doing it’s own thing which is not oembed.
Try just dropping &rel=0 on the end of your YouTube url.
Forum: Plugins
In reply to: [FoxyShop] How include helperfunction in custom template?What’s the error?
Forum: Plugins
In reply to: [Custom Field Bulk Editor] No 'Next Page' buttonHi Jose,
Unfortunately, you’ll have to edit the querystring to get it to display more pages. You can put in &page_number=X and posts_per_page=X to display different sets of data.