polyfade
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Theater] WP Theater inside a tabI tried adding some css to resolve the issue, but maybe fitvids.js could fix the resize better by figuring out the aspect ratio?
I referred to this post: https://www.smashingmagazine.com/?p=135771
The following markup works well enough that the video isn’t hidden.
.wp-theater-bigscreen-inner { position: relative; padding-bottom: 56.25%; /* This is for 16:9 ratio only */ height: 0; overflow: hidden; } .wp-theater-bigscreen-inner iframe { position: absolute; top:0; left: 0; width: 100%; height: 100% !important; }
Forum: Plugins
In reply to: [WP Theater] WP Theater inside a tab@kentfarst Unfortunately, the version I’m running locally, Foundation 4.3.2, is in development, but this installation of Foundation 4.1.2 has the same issue.
https://mtype.com/?p=7If the video isn’t loaded inside the active (initial) tab, there needs to be a callback function otherwise the main video doesn’t size properly on tab change.
Reference to the JS that makes Foundation’s tabs function: foundation.section.jsBTW, do not refer to Foundation’s most recent docs on version 5.x as tabs are handled differently. Please refer to Foundation v4 branch on Section.
Thanks!
Forum: Plugins
In reply to: [WP Store Locator] CSS loading in the footerI also tried installing a fresh install of this plugin (v1.2.21) on a different WP install using the TwentyFourteen theme. Getting the same result. BTW, I’m using the shortcode on a page, not post if that makes a difference.
Forum: Plugins
In reply to: [WP Store Locator] CSS loading in the footerForum: Plugins
In reply to: [Contact Form 7] Getting Messages 4 TimesRecently, I also noticed the same form being submitted several consecutive times by the same people.
Meaning, someone clicked ‘Submit’ 3 times in a row and now my inbox has 3 identical messages.
It seems during the submission process, the submit button isn’t being disabled. Yikes!
How to fix?
John, you’re right by saying, I needed to change the post limit to a higher value in order to get 5 posts to show.
Thanks!Forum: Plugins
In reply to: [Slim Jetpack] Share buttons original layoutWhoops! Nevermind, they need to be dragged to the other area.
Forum: Plugins
In reply to: [Mini Loops] Add content from a Page, not PostWith Mini Loops it’s possible to select Page as a post type, but how do you specify the Page ID in the widget? For example, it’s not
post=46
Forum: Plugins
In reply to: [Firelight Lightbox] disable background scrollingRavanH,
Thanks for the quick response. Yes, activating that option, “Include the Mousewheel jQuery extension script to allow gallery browsing by mousewheel action” did the trick.
I guess this inadvertently solves the problem since the mousewheel’s purpose would be set to scroll though the gallery instead of using the scroll action for any other purpose.
Cheers!
Forum: Plugins
In reply to: [Twitget] Twitter avatar sizethanks! much appreciated.
Forum: Plugins
In reply to: [Custom Post Type UI] Taxonomy CPT dashboard list columnYes, I wondering myself, is it possible to add columns for the generated taxonomies?
Forum: Fixing WordPress
In reply to: WordPress 3.5.1 admin latency issuesAndrew, one of the plugins I use, Royal Slider, returns a js error: ‘jQuery is not defined,’ on the wp-login.php page, but not within the admin area itself. Actually, there aren’t any console errors within the admin area.
@songdogtech, Bluehost is hosting the site. Not on that particular server, but I have other WP sites (v 3.4.2) hosted with them and haven’t had any severe latency issues now or in the past. I’ve contacted Blueshost on 3 separate occasions, and they give me the same feedback. They keep trying to push CloudFlare on me.
The time an admin page takes to load is random. On average it’s 3 to 6 seconds, which is still a bit slow compared to WP 3.4.2, but acceptable. But, at times, more than usual it takes 12 seconds or longer.
According to this screenshot
https://cl.ly/image/060V1l1O3F0H
is the time it took for me to go from “Media” to clicking on “Pages.” Mind you, all I have is 10 pages total.
Then after that, from “Pages” to clicking on “Themes,” it took 12 seconds.
https://cl.ly/image/3V030n2g0x1JAlthough, I have plugins active now, the problem has been the same, especially looking at the last screenshot. Any ideas?
Forum: Plugins
In reply to: [Google Doc Embedder] [Plugin: Google Doc Embedder] Document TitleSorry, to clarify, I mean the actual “Title” you assign within WordPress’ attributes for media. Eg: Title, Description, Caption
Would it be possible to include the Title using an assigned variable?File names, if named properly, usually don’t (or shouldn’t) contain spaces and/or uppercase letters. Therefore, presenting the filename is not the prettiest.
With that said, keeping the filename variable as an option still has great value – when you want to display the a filename.
Forum: Plugins
In reply to: [Magic Fields 2] Tiny MCE Editor not appearing in Magic Fields 2Thanks InteliWISE, but that still hasn’t fixed this ongoing problem. Toggling from the plain text editor to tinymce editor still doesn’t load unless I save the post again with tinymce editor already active.
Using Magic Fields 2.0.1, WordPress 3.3.4, default theme, fresh install, no additional plugins.Bill,
If this annoys you as much as it did me, I did the one thing you probably shouldn’t do (especially if there’s an update). I modified the plugin itself.In Google-Maps-v3-Shortcode.php, I removed the call to Google Maps API. I believe starting with line 13 – 23
// Add the google maps api to header add_action('wp_head', 'gmaps_header'); function gmaps_header() { ?> <script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"></script> <style type="text/css"> .entry-content img {max-width: 100000%; /* override */} </style> <?php }
In you functions.php page add the following:
function gmap() { if ( is_page( 'contact-us') ) { wp_register_script('googleMap', ('https://maps.google.com/maps/api/js?sensor=false')); wp_enqueue_script('googleMap'); } } add_action( 'wp_print_scripts', 'gmap');
Replace ‘contact-us’ to whatever your page slug is called.
Basically this adds the Google Maps API back in to only the page you have the map appear on.