sparkweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin not workingYou are exactly right: this plugin only works when WordPress is using the oembed method to build the links. Your template or theme is not doing this, thus it won’t work. If you can edit the the theme you might be able to come up with some ways around this. Either by calling the oembed function directly or just putting some extra arguments on the url to hide the related videos.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin not workingHi Antonia, could you send me a link so I can see the problem you are having?
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Paging feature not workingHi Fabrizio, look up in the url bar of your browser and add this to the end:
&posts_per_page=300&page_number=1Then it will show 300 per page. You can change the page_number value to 2 to show the next 300.
Forum: Plugins
In reply to: [FoxyShop] Change CurrencyHi Russell, I’ve been talking with you about this over email, but I wanted to respond here as well in case anyone else wanted to see the answer.
You can see some detail about currency display here: http://www.foxy-shop.com/faqs/trouble-with-local-currency/
You may need to connect with your web host to find out what locales they have installed on your server and what those locale codes should be.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Using it correctly?It looks like what is going on is that the plugin is using serialized data in the value. Serialized data is a lot harder to edit it and if you make a change to the length of a string, it will destroy the whole value. If you knew what it was, you could possibly use the plugin to change it:
a:1:{i:0;s:2:”96″;}
to
a:1:{i:0;s:3:”100″;}
The s:x is the length of the string.
If you are just doing straight values, this plugin works a lot better for you.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Using it correctly?I think ACF is probably storing that as something different. Or possibly as a custom field on the taxonomy itself. I think if you go into the database and lookup the fields for the post itself I think it will make it more clear what might be going on.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Paging feature not workingHi Fabrizio, what problem are you having? You may want to start a new thread and clearly describe your issue so I can help.
Forum: Plugins
In reply to: [FoxyShop] Variable prices in drop downYou can set variations like this:
One Month{fr:1m|p:35} Quarterly{fr:3m|p:140} Yearly{fr:12m|p:420}And it will set the sub_frequency at the same time as the price.
Forum: Plugins
In reply to: [FoxyShop] Variable prices in drop downHave you tried setting your variations like this:
One Month{p:35}
Quarterly{p:140}
Yearly{p:420}FoxyCart Docs: https://wiki.foxycart.com/v/2.0/products#a_complete_list_of_product_parameters
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Stop Working@bonjovicrzy41 can you please post a test link so I can see what might be going on? If you aren’t comfortable doing that you can email me directly at web -at- sparkweb dotnet
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin not workingYou must be using WordPress’ oEmbed feature in order for this plugin to work. My guess is that Avada may just be doing their own conversion.
The plugin works by hooking into the oEmbed process from WordPress and converting the video there.
Is your link just a simple link on a line or are you posting the embed code itself?
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Access rights for bulk editWell as I mentioned, you may want to do
upload_filesinstead. Also, the MYCPT line is for any custom posts you have. You’d replace MYCPT with the slug for your custom post type.Forum: Plugins
In reply to: [Custom Field Bulk Editor] Field value "0" (Zero) is ignoredHi Martin,
Please change line 566 of the plugin file to:
if ($new_data === "") $new_data = NULL;and give that a try. It currently reads:
if (!$new_data || $new_data === "") $new_data = NULL;Which would delete the record if it was empty and 0 evaluates as empty. If that works for you, I think I’d be okay with changing this in the plugin.
Forum: Plugins
In reply to: [FoxyShop] Subscription Datafeed is failingFor posterity, the solution on this was that the host had installed some security mods which were killing the datafeed POSTs and sending a 403 back.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] An overview of how this worksHi Matt,
What you’d do with this plugin is to check on the Settings page and make sure that the plugin is enabled for the post type you are after. Then you’d click on Bulk Edit under that section, check the posts you want to change and add the custom fields.
(WordPress hasn’t made the bulk edit area very pluggable so this is the best way to add on functionality.)