dsburdette
Forum Replies Created
-
I moved to another solution for the moment so no URL to share. In Visual Builder mode, all sliders looked fine. Once I exited the VB, the shadows would be multiplied. Hoping you can replicate by just duplicating a B/A module to see the growing effect. I’d make maybe 9-12 copies so you see how the shadow gets darker.
I’m experiencing this exact same issue. Any insight would be appreciated. I’m using a Tabs module in Divi and the first tab that loads with a FooGallery (with Masonry layout) works as expected. As soon as I switch to the 2nd tab, the gallery images stack on top of each other and only adjusts correctly when I resize the window or bring up the browser developer tools.
Forum: Plugins
In reply to: [Justified Gallery] Disable on Some PagesI second this question and/or request. This would be a great feature add.
bradvin-
This helped immensely, thank you. I had the exact issue as described by zoelise but I was loading videos in each tab with the FooGallery – Video Extension. I used your code but modified it for a click event on my tabs.
For anyone else who would need this, I’ve provided my code below. Please note that my selector is specific to my application using Visual Composer so you would need to change the “#video-tutorials li.vc_tta-tab” to target your specific tabs.
$('#video-tutorials li.vc_tta-tab').click(function() { $(this).trigger('resize.brickfolio'); });
bradvin-
This helped immensely, thank you. I had the exact issue as described by zoelise but I was loading videos in each tab with the FooGallery – Video Extension. I used your code but modified it for a click event on my tabs.
For anyone else who would need this, I’ve provided my code below. Please note that my selector is specific to my application using Visual Composer so you would need to change the “#video-tutorials li.vc_tta-tab” to target your specific tabs.
$('#video-tutorials li.vc_tta-tab').click(function() { $(this).trigger('resize.brickfolio'); });
- This reply was modified 8 years, 1 month ago by James Huff.
- This reply was modified 8 years, 1 month ago by dsburdette.
Forum: Plugins
In reply to: [Accordion Slider Lite] Full-screen capabilities?Excellent – very flexible! Thanks for the quick responses.
Forum: Plugins
In reply to: [Accordion Slider Lite] Full-screen capabilities?I understand the container width needing to be 100% but you’re saying I can enter “100%” in the “Width” box of of the “Appearance” section of the Accordion settings? Just wanted to make sure I understood you correctly.
Thank you!
Forum: Plugins
In reply to: [WP-Filebase Download Manager] WordPress 4.2.4 breaks the PluginPosted this in another thread about table sorting issues I was having. Here’s what I added to that thread describing what fixed my problem:
I had a problem with my file data table not sorting via the column headers. I fixed the issue by loading an older version of jQuery. I’m running WP 4.3 and it was loading jQuery 1.11.3. I was getting a jQuery error in the console so I added the following to my functions.php file where I am enqueueing scripts to load up 1.11.2 and that fixed my issues. Hope this works for the rest of you. I even tried loading some 2.0 version and some of them worked too but I decided to stick with one version older than what 4.3 was loading.
function my_scripts_method() { wp_deregister_script('jquery'); wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, '1.11.2'); } add_action('wp_enqueue_scripts', 'my_scripts_method', 99);
Forum: Plugins
In reply to: [WP-Filebase Download Manager] Sorting not workingI had a problem with my file data table not sorting via the column headers. I fixed the issue by loading an older version of jQuery. I’m running WP 4.3 and it was loading jQuery 1.11.3. I was getting a jQuery error in the console so I added the following to my functions.php file where I am enqueueing scripts to load up 1.11.2 and that fixed my issues. Hope this works for the rest of you. I even tried loading some 2.0 version and some of them worked too but I decided to stick with one version older than what 4.3 was loading.
function my_scripts_method() { wp_deregister_script('jquery'); wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, '1.11.2'); } add_action('wp_enqueue_scripts', 'my_scripts_method', 99);
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Could not save XML fileThat’s it, thank you! Fast support too!
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Could not save XML fileI updated to Version 6.0.28 just prior to making my last post. Is that the version you are referring to? Any other steps I need to take beside deactivate/activate and chmod 777?
FWIW, I’ve been using the following in my theme template for page.php but still experience this issue. At what point does your plugin update that database entry?
<?php echo do_shortcode('[wpgmza id="1"]'); ?>
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Could not save XML fileFWIW, this setting is set in the “wp_options” table of the database (option name=wpgmza_xml_location). I copied my live development site back down to my local computer and am receiving this error as well.
Setting your permissions on “wp-content/uploads/wp-google-maps” to 777 is fine and dandy but it will never solve your problem because the plugin doesn’t appear to update this database settings if you move your site. I tried deactivating/activating the plugin but to no avail. I suppose I’ll manually update the path in the database to solve my problem but that’s probably not an ideal solution for a lot of people here.
To the plugin author, any thoughts?
Forum: Plugins
In reply to: [User Access Manager] Redirect not workingThe redirect works for me but only on the parent page that is protected. I have a child page with the “Lock recursive” setting set to “Yes” so it properly shows that it is being protected but if I try to browse to this page, it does, in fact, display (albeit with no content).
I need any page in the “Members” area that might be manually accessed to simply redirect to the home page but it seems the top level page is the only one that works.
yitwail-
Yea, I’m aware I don’t want to edit the plugin directly so thank you for the tip on making the tweak within my theme folder! I’ll get that tidied up right away. Thank you sir.
I had the same problems everyone was experiencing in the thread link provided by yitwail above (Duplicated content in all of my widgets). When Johan added the ability to check a box for “Do not apply content filters” within the widget window, that fixed my issue of having duplicated content appear in all of my widgets but it removed all of the formatting of my widgets (paragraphs, line breaks, etc.)
I just fixed my issue by editing line 110 of version 2.5.7 from:
echo do_shortcode( $content ); // This is where the actual content of the custom post is being displayed
to:
echo do_shortcode( wpautop($content) ); // This is where the actual content of the custom post is being displayed