Brent
Forum Replies Created
-
Forum: Plugins
In reply to: [Accordion Shortcodes] openfirst not workingSorry, I meant to create a new post.
Forum: Plugins
In reply to: [Accordion Shortcodes] openfirst not workingJust updated. Nothing will open now!??
Using this shortcode, nothing has changed..
‘[accordion autoclose=”true” openfirst=”true” openall=”false” clicktoclose=”true” accordion scroll=”true”]’
Please help.
Thank you,
BrentForum: Plugins
In reply to: [Better WordPress Minify] Two domains: BWP Minify only load on one. ?They are both on the same WP site, brentwallace.net.
Forum: Plugins
In reply to: [Better WordPress Minify] Two domains: BWP Minify only load on one. ?Any progress here Khang?
Thank you.Forum: Plugins
In reply to: [Simple Shortcode for Google Maps] Map view just quit? Button still works…?Hey Pippin, we got things fixed.
I talked with Khang Minh who wrote the Better WordPress Minify plugin. Here is his response to my email:
Hi Brent,
I’ve added the work around and it seems to work. I’ve added this comment: “// workaround for BWP Minify plugin – added by Khang Minh” to where I edited in that plugin’s file (there’s only one PHP file).
I will try to provide an update at the end of this week, or you can contact Pippin about this work around, it will make his plugin more compatible with other minify plugins as well.
Hope that helps 🙂
Here is what he added to you plugin to fix the issue:
// workaround for BWP Minify plugin - added by Khang Minh jQuery(document).ready(function(){ pw_run_map_<?php echo $map_id ; ?>(); }); </script> <a href="http://maps.google.com/maps?q=<?php echo esc_attr( $address ); ?>" target="_blank"><input type="button" class="pw_button" value="Get Directions"></a> <?php endif; return ob_get_clean(); } add_shortcode( 'pw_map', 'pw_map_shortcode' );Hope this is beneficial for all.
BrentBy the way, here are the items in the ignore list:
admin-bar
jquery-core
jquery-migrate
google-maps-apiI added google-maps-api, but nothing changed.
Forum: Plugins
In reply to: [Simple Shortcode for Google Maps] Map view just quit? Button still works…?Hey Pippin, I found the problem, but not quite sure how to fix it.
The WP Better Minify plugin (bwp-minify) was updated 2 days ago. I turned off all plugins on a test page at: http://icefinejewelry.com/test-post/ except for “plugin organizer” that I use to turn off all other plugins, and your “Simple Google Maps Short Code”. Whenever bwp is active the map won’t show. I went into the plugin settings to ignore minifying it but the only option I had was to ignore “google-maps-api” (http://maps.google.com/maps/api/js?sensor=false) and when I did that I still had the issue. I left the test post so that you could see it.
Any ideas on how to fix this? The minify plugin really helps with load time and I still need to use it also.
Thanks again,
BrentForum: Fixing WordPress
In reply to: WP admin won't recognize CSS idThank you, I’ll do that.
Forum: Reviews
In reply to: [jQuery Smooth Scroll] Used to work until v1.3.1 update!Hi Anand.
I found the conflict. It was that the “Font Awesome” plugin and yours would not play well together so I had to downgrade. You can see my site at http://nerium.me
Please let me know if you come up with a fix.
Thank you,
BrentForum: Plugins
In reply to: [Responsive Video Light] Did YouTube change something?FYI: I added the following CSS to help correct the video size. Hopefully it’s only a temporary fix for YouTube videos only displaying at 300px x 150px.
.video-container iframe { width: 100% !important; height: 100% !important; min-height: 50% !important; max-height: 100% !important; }Forum: Plugins
In reply to: [Responsive Video Light] Did YouTube change something?oops, forgot…
link: http://www.nerium.me/botanical-skin-care-the-nerium-experience/Forum: Plugins
In reply to: [Testimonial Rotator] Upgrading to 2.0 broke all my custom styles!Sorry Hal,
But this just doesn’t work correctly now. I removed all of my custom CSS and it has nothing to do with things not displaying correctly. I guess I’ll re-load v1.4 again. crap
Forum: Plugins
In reply to: [Testimonial Rotator] Upgrading to 2.0 broke all my custom styles!Thanks Stephen! 🙂
Forum: Plugins
In reply to: [Testimonial Rotator] Upgrading to 2.0 broke all my custom styles!Same problem here! Where can I download the old 1.4? I don’t have time to fix all of this now.
Forum: Plugins
In reply to: [Multiple Domains with Analytics] How to add a body class per domain name?FYI: I got some help from Bill Erickson. Thank you Bill!
Use this in your functions.php:
function be_site_name_in_body( $classes ) { $class = str_replace( array( 'http://', 'www.', '.', '/' ), array( '', '', '-', '-' ), home_url() ); $classes[] = sanitize_html_class( $class ); return $classes; } add_action( 'body_class', 'be_site_name_in_body' );Hope this helps someone! Good Luck!