Swellfire
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] iOS double click event on phoneThank you for the help! That polyfill was the issue.
Forum: Plugins
In reply to: [Stream] Pods 2.4.3 Custom Taxonomy Not DisplayingThank you sir. I’ll downgrade and await the update. Love the plugin by the way!
Forum: Plugins
In reply to: [Stream] Pods 2.4.3 Custom Taxonomy Not DisplayingThank you sir. I’ll downgrade and await the update. Love the plugin by the way!
Forum: Fixing WordPress
In reply to: Error establishing a database connectionYou might check with your host on that one. Here is an article that might help.
Forum: Your WordPress
In reply to: My new Lifestyle BlogLooks good! I agree with Scott. The stars draw away from the content. Kind of makes it difficult to keep focus on the post. Try lowing the opacity of those stars or increasing the border on the entries themselves to help differentiate them.
Forum: Themes and Templates
In reply to: Add an External URL to NavigationAwesome!
Forum: Themes and Templates
In reply to: Add an External URL to NavigationDisregard that. You are getting an error in the console when you click on an external link. Looks like an issue with that specific theme.
This is from the comments section on themeforest:
Another user emailed me privately but forgot to include their email address asking how to link to internal / external pages from the main menu navigation (e.g. you build custom page templates to create additional pages and want to link them from the main nav).
Here is how it was accomplished for that user and any others that want to know:
You just have to modify the “custom.js” file – line 205 under the “Smooth Page Scroll” section and just comment that line out:
Also at one’s own risk until we hear back from GUU, but I went through line by line and I got mine to work while maintaining the smooth scroll by commenting just the one line at 205 – “event.preventDefault();”if ($(‘body’).hasClass(‘home’)) { $(”.menu li.menu-item > a”).addClass(‘scroll’); }
$(”.scroll”).click(function (event) { <!-event.preventDefault();->
If that doesn’t resolve it I would try contacting the theme developer directly.
Forum: Themes and Templates
In reply to: Add an External URL to NavigationTry adding “https://” in front of the link.
Forum: Themes and Templates
In reply to: Add an External URL to NavigationHope that helps. Upper right “Screen Options” —> “Show advanced menu properties” —> “Link Target”
Forum: Alpha/Beta/RC
In reply to: Featured image not showing when using SVGSounds good. Thanks for the help.
Forum: Alpha/Beta/RC
In reply to: Featured image not showing when using SVGSorry for the confusion, it is working on 3.6.1
Just updated this local install to 3.7.1 and the svg Featured Image is 1×1 as you mentioned.
Forum: Alpha/Beta/RC
In reply to: Featured image not showing when using SVGYes, seems to work fine for me on 3.7.1
Forum: Themes and Templates
In reply to: Loading jQuery UI in headCorrection, you need to load widget as well.
add_action('wp_enqueue_scripts', 'swellfire_load_scripts'); function swellfire_load_scripts(){ if( is_admin() ) return; wp_deregister_script( 'jquery-ui-core' ); wp_enqueue_script( 'jquery-ui-core', site_url( '/wp-includes/js/jquery/ui/jquery.ui.core.min.js' ), array('jquery') ); wp_deregister_script( 'jquery-ui-widget' ); wp_enqueue_script( 'jquery-ui-widget', site_url( '/wp-includes/js/jquery/ui/jquery.ui.widget.min.js' ), array('jquery') ); wp_deregister_script( 'jquery-ui-tabs' ); wp_enqueue_script( 'jquery-ui-tabs', site_url( '/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js' ), array('jquery') ); }
Forum: Themes and Templates
In reply to: Loading jQuery UI in headI found a solution here
Evidently you have to deregister the script and then enqueue it again like so:
add_action('wp_enqueue_scripts', 'swellfire_load_scripts'); function swellfire_load_scripts(){ if( is_admin() ) return; wp_deregister_script( 'jquery-ui-core' ); wp_enqueue_script( 'jquery-ui-core', site_url( '/wp-includes/js/jquery/ui/jquery.ui.core.min.js' ), array('jquery') ); wp_deregister_script( 'jquery-ui-tabs' ); wp_enqueue_script( 'jquery-ui-tabs', site_url( '/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js' ), array('jquery') ); }
If anyone knows a more elegant way to solve this I would love to see it.
The problem seems to be with your col-md-4 in the css file. Put this in your stylesheet and see if it helps:
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { position: inherit !important; }