Fallbrook
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Conditional statement not workingGot it, thank you very much – I will definitely keep that for future use!
Forum: Plugins
In reply to: [Calculated Fields Form] Conditional statement not workingThank you so much for that clarification!
I tried the code you supplied and for some reason the form was still not picking up on the second line. When executing – it’s performing the task of the first if statement fine. So I decided to remove the alpha characters “W” and “L” and instead went with “610” and “611” and that worked…
I love the simplicity of your IN operation so I went with that but changed the equation to remove the characters as above and that is working exactly as needed now.
Do you know by any chance the reason that alpha-numeric configurations wouldn’t work? If not its no worry, just curious. I am very glad it’s working now and can’t thank you enough for the support you provide – amazing plugin!
Thank you very much that works perfectly! I was missing the addition of the HTML content, which was new to me since I had previously been using the non-dev version, but recently upgraded.
Thank you again, and thank you for the support you provide via these forums – I don’t think I’ve seen a plugin this well supported before!
Resolved. I found a post about 12 pages in that had code that allows you to display future events. For some reason, the more recent code used did not work. This one however does:
add_filter( ‘wprss_display_feed_items_query’, ‘my_show_future_posts’, 10, 2 );
function my_show_future_posts( $args, $settings ) {
// $args[‘order’] = ‘ASC’; // Reverses the sort order
$args[‘post_status’] = array(‘publish’, ‘future’);return $args;
}Just put that in your functions.php page and you’re set.
Just an update, the feed link seems to be slowly showing feed items now. Out of 25 ‘pulled’ feed items (showing in the feed items list), there are now 5 items showing on the page with my shortcode on it… maybe it’s just taking a while to post them within the plugin?
Forum: Plugins
In reply to: [Calculated Fields Form] Can I populate a field with the contents of a DIV?Awesome – I like your code better 😉
Forum: Plugins
In reply to: [Calculated Fields Form] Can I populate a field with the contents of a DIV?I did it….
(function(){
return document.getElementsByClassName(“entry-title”)[0].innerHTML;
})();I’ve been googling and searching and trying every conceivable alternative and I forgot the beautiful ‘return’ function (as well as identifying which class element to show)…
If anyone is looking to do something similar – this code above will grab the page title of the page the calculated form is on, and insert that into a text field that can then be submitted in the form. A great way to “identify” forms automatically.
I’ve said it before, and I will say it again – this plugin absolutely rocks. You can do so much with this plugin – thanks again to the Dev(s)!
I too would be interested in this feature. Any update on this by any chance?
Forum: Plugins
In reply to: [Nifty Modal Popups Lite] Opens window inside div in SafariNevermind, I was able to resolve the issue.
I removed the “position:relative;” callout for the DIV in question and it fixed the issue with Safari and Chrome. All three browsers view it perfectly now.
Really great plugin, thank you for all your work!
Forum: Plugins
In reply to: [Query Wrangler] Limiting values on Taxonomy tags does not workThank you Jonathan, I will check it out!
Solved… sorry, I worked around with the script and came up with this that works perfectly thanks to your help:
window.location.href = ‘http://mysite.com.au/category/dining/?tag=’+jQuery(‘.location input:checked’).map(function()
{
return $(this).val();
}).get();Just a quick question – if the input is a checkbox format, is there a way to grab all the checked boxes formatted with ‘+’ between them?
So as an example, if I have credit card options the javascript will format two or three of the selected options like this:
Dude, you totally rock my world. Thank you so much! You don’t want to know how much time I spent trying to work out all different sorts of combos. Thank you!
(Also, I have never seen a support forum ever that had this much support from the developer, you should be very proud!)