Tag Archives: wordpress

Troubleshoot: Fix Internet Explorer 8 mess up WordPress themes

Use this service to test the pages https://netrenderer.com https://developer.microsoft.com/en-us/microsoft-edge/ https://ckon.wordpress.com/2009/03/19/how-to-fix-internet-explorer-8/ Download virtual machines Test Microsoft Edge and versions of IE8 through IE11 using free virtual machines you download and manage locally. https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ https://developer.microsoft.com/en-us/microsoft-edge/tools/screenshots/

Posted in troubleshoot | Tagged , , , , | Comments Off on Troubleshoot: Fix Internet Explorer 8 mess up WordPress themes

WordPress: Responsive video (mp4 video inserted from media library)

Changed the wordpress wp-includes/media.php file. Probably not the best way to do this. Ref: https://codex.wordpress.org/Video_Shortcode At around line 2504, comment out the following: $html_atts = array( ‘class’ => $atts[‘class’], ‘id’ => sprintf( ‘video-%d-%d’, $post_id, $instance ), ‘width’ => $atts[‘width’], //’width’ … Continue reading

Posted in CMS | Tagged , | Comments Off on WordPress: Responsive video (mp4 video inserted from media library)

WordPress: Redirect after Login on WordPress

Source: http://stackoverflow.com/questions/8127453/redirect-after-login-on-wordpress Add the following to child theme’s functions.php function admin_default_page() { return ‘/new-dashboard-url’; } add_filter(‘login_redirect’, ‘admin_default_page’);

Posted in CMS | Tagged , | Comments Off on WordPress: Redirect after Login on WordPress

Easy Fancybox: Solution for Iframe no-scroll issue in mobile

Source: https://alucard-blog.blogspot.sg/2016/06/how-to-fix-fancy-boxeasy-fancybox.html How to fix fancy box scroll not working in mobile. Using wordpress plugin https://wordpress.org/plugins/easy-fancybox/ In Easy Fancybox, you will see these 2 lines in the jquery.fancybox-1.3.7.js: (do a folder search for id=”fancybox-content” to get better idea of how … Continue reading

Posted in CMS, CSS, troubleshoot | Tagged , , , | Comments Off on Easy Fancybox: Solution for Iframe no-scroll issue in mobile

WordPress: Disable product arrow pop-out (woocommerce, custom posts, Jupiter theme)

Source: https://wordpress.org/support/topic/woocommerce-disable-product-arrow-pop-out Affects all custom posts Question: Hi, I’m using WooCommerce (latest) with my Jupiter theme plugin. I can’t find the option to disable WooCommerce recommending other items on the side of the page. See this screenshot for an example. … Continue reading

Posted in CMS | Tagged , | Comments Off on WordPress: Disable product arrow pop-out (woocommerce, custom posts, Jupiter theme)

WordPress plugins: downloading old versions

Go to the plugin page hosted at wordpress.org https://wordpress.org/plugins Click on the Developer tab and you’ll find the list of previous releases.

Posted in CMS | Tagged , | Comments Off on WordPress plugins: downloading old versions