nightbook
Forum Replies Created
-
Marked as Resolved
Thanks Katrina,
the in_category tricked worked like a charm to filter from all event categories.
Appreciated,
CheersForum: Plugins
In reply to: [WooCommerce Debug Bar] jQuery Error with WooCommerce Debug BarI was able to track this down to the live function no longer being supported by jquery:
https://api.jquery.com/live/
As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live().I’ve updated the woocommerce-debug-bar.js code to utilize the on() event handler, below is the updated code:
jQuery( document ).ready( function( $ ) {
$(‘#wc-debug-bar-show-products’).show();
$(‘#wc-debug-bar-products’).hide();$(‘#wc-debug-bar-show-products’).on(‘click’, function() {
$(‘#wc-debug-bar-show-products’).hide();
$(‘#wc-debug-bar-hide-products’).show();
$(‘#wc-debug-bar-products’).show(‘fast’);
return false;
});$(‘#wc-debug-bar-hide-products’).on(‘click’, function() {
$(‘#wc-debug-bar-hide-products’).hide();
$(‘#wc-debug-bar-show-products’).show();
$(‘#wc-debug-bar-products’).hide(‘fast’);
return false;
});$(‘#wc-debug-bar-show-coupons’).show();
$(‘#wc-debug-bar-coupons’).hide();$(‘#wc-debug-bar-show-coupons’).on(‘click’, function() {
$(‘#wc-debug-bar-show-coupons’).hide();
$(‘#wc-debug-bar-hide-coupons’).show();
$(‘#wc-debug-bar-coupons’).show(‘fast’);
return false;
});$(‘#wc-debug-bar-hide-coupons’).on(‘click’, function() {
$(‘#wc-debug-bar-hide-coupons’).hide();
$(‘#wc-debug-bar-show-coupons’).show();
$(‘#wc-debug-bar-coupons’).hide(‘fast’);
return false;
});
});Appreciate if this gets into your next update,
ThanksForum: Plugins
In reply to: [Simple Responsive Slider] MisspellingsAwesome Marcel, thank you.
Forum: Plugins
In reply to: [The Events Calendar] Events Missing from Backend EditorFound the solution after going through the Debug bar and looking at the DB queries, seems it’s choking on the large joins.
This code added to functions.php resolved my issue:
add_action('init', 'tribe_allow_large_joins'); function tribe_allow_large_joins(){ global $wpdb; $wpdb->query('SET SQL_BIG_SELECTS=1'); }
Forum: Plugins
In reply to: [Perfect Images] Retina images not generatedThanks @zkingdesign, greatly appreciated.
Forum: Plugins
In reply to: [Perfect Images] Retina images not generatedHey @zkingdesign, I’m having this same issue, any hints as to what you did to resolve it?
Forum: Plugins
In reply to: [Cleanup HTML] Add_Action missing quotes.I’ll second that, without throws constant warnings:
[22-Feb-2014 08:27:48 UTC] PHP Notice: Use of undefined constant cleanup_html_admin_scripts – assumed ‘cleanup_html_admin_scripts’ in /hermes/bosoraweb101/b2433/nf.inwhiterockcom/public_html/wp-content/plugins/clean-html/cleanup-html.php on line 58Forum: Plugins
In reply to: [The Events Calendar] Duplicate EventsThanks Barry,
Appreciated, rather than open a new request I just upvoted the existing one.
https://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/3874714-duplicate-events
All the best,
CheersForum: Plugins
In reply to: [The Events Calendar] Duplicate EventsThanks Thea, for the plugin authors I completely understand that. However the workaround is already available in a sense as I can manually create another entry as duplicate so the feature would ease that process as well as handle other cases where you want a similar event (not a recurring one) but don’t want to go through and create it from scratch.
Awesome, you’ve got it working then. You can play around with the placement of the widget within your template, put it above the post stuff, replace it, whatever works for you. But we’re good I’m happy to hear you’ve been able to set-up.
All the best with your customizations.
CheersHi Satimis,
Sorry I thought you weren’t getting it listed, that’s good you have it then.
So the template is being picked up and you can create a page using it.
Now under your Appearance > Widgets do you have a Videos Sidebar and if so have you dragged the Youtube Gallery Widget into that sidebar and set it up?
Make sure those pieces are in place and it should show up.
You’ll need it to be connected to a youtube channel that has videos as well.
CheersSo does the Template show up on your Page Editor under available Templates?
If not from looking at my own and others on tutorials there can’t be anything in front of the line w/ Template Name, so try updating to the following without the * star in front.<?php /** Template Name: Videos Gallery * * This is the template that has the dynamic Videos sidebar to place in the Videos Gallery Widget. */ get_header(); ?>
Cheers