Forum Replies Created

Viewing 15 replies - 106 through 120 (of 135 total)
  • Thread Starter polyfade

    (@polyfade)

    I 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;
    }

    Thread Starter polyfade

    (@polyfade)

    @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=7

    If 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.js

    BTW, 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!

    Thread Starter polyfade

    (@polyfade)

    I 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.

    Thread Starter polyfade

    (@polyfade)

    Tijmen, I’m using TwentyTwelve with WP 3.9.1, no other plugins activated and no alteration to the theme or this plugin via functions.php or otherwise.

    I double checked. It’s loading the style sheet just before the <body> ends rather than inside the <head>.
    Styles

    Recently, 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?

    Thread Starter polyfade

    (@polyfade)

    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!

    Thread Starter polyfade

    (@polyfade)

    Whoops! Nevermind, they need to be dragged to the other area.

    Thread Starter polyfade

    (@polyfade)

    With 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

    Thread Starter polyfade

    (@polyfade)

    RavanH,

    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!

    Thread Starter polyfade

    (@polyfade)

    thanks! much appreciated.

    polyfade

    (@polyfade)

    Yes, I wondering myself, is it possible to add columns for the generated taxonomies?

    Thread Starter polyfade

    (@polyfade)

    Andrew, 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/3V030n2g0x1J

    Although, I have plugins active now, the problem has been the same, especially looking at the last screenshot. Any ideas?

    Thread Starter polyfade

    (@polyfade)

    Sorry, 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.

    Thanks 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.

    Thread Starter polyfade

    (@polyfade)

    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.

Viewing 15 replies - 106 through 120 (of 135 total)