barkingbird
Forum Replies Created
-
Forum: Plugins
In reply to: [EventON] Events layout messed upSorry guys, we couldn’t wait any longer. Our events are a vital part of our business and we really needed this working. It turns out that the event shortcode we had been using all along stopped working, most likely after a plugin update. I redid the shortcode using the shortcode generator and everything is back to normal now. Here is the code we are now using: [add_eventon ux_val=”1″ event_past_future=”future” “event_type”=”44,19, 20, 24, 22, 17, 15, 16, 23,” show_et_ft_img=”yes” tile_bg=”1″ tiles=”yes” tile_style=”1″]
Forum: Plugins
In reply to: [EventON] Events layout messed upAny update on this? Events contribute a lot to our revenue and we really need this functioning again.
Recap: The events are not clickable and tiles does not work
I have deactivated all plugins except EventOn, switched to the parent theme (Divi), removed all additional css, updated all plugins and theme. There is no caching installed on this site. Nothing I am trying is helping.This just started happening about a week ago.
Forum: Plugins
In reply to: [EventON] Calendar not loadingWe have been happily using this plugin for years for our brewery events, but we noticed today that the events are not listing correctly. We use the “tile” mode but the events are appearing in a single column on this page: https://artisanalbrewworks.com/artisanal-events/
Here is the code: [add_eventon_list number_of_months=”4″ tiles=”yes” tile_bg=”1″ event_past_future=”future” tile_style=”1″ event_type=”44,19, 20, 24, 22, 17, 15, 16, 23,”]
All software is updated, I disabled most plugins except for the most common ones and we are not using a caching plugin.
Please help.
Forum: Plugins
In reply to: [WooCommerce] Filter Products by Attribute, multiple filtersThanks for that and I looked at it, but the reviews are horrible:
https://woocommerce.com/products/product-filters/#reviewsAlso, that plugin does not provide a Demo page, allowing me to use the plugin on the front-end as a typical user would use it. Demo pages are very helpful when evaluating a plugin before purchasing it, so it is odd this plugin does not have one. Without a Demo page, it would be helpful to use a free version of the plugin, but that is not an option either.
Forum: Plugins
In reply to: [WooCommerce] Category shows product count but is emptyHi MayKato. That is the problem. There is no product in the Aderenza category. Doing a search for Aderenza in Products also shows no results. After all of the troubleshooting I’ve done as described at the top of this thread, do you know how I can resolve this? There are over 53,000 products and over 600 categories, so manually fixing this one at a time really is not an option. Thanks!
Forum: Plugins
In reply to: [WooCommerce] Category shows product count but is emptyThanks – I tried that but it did not resolve the issue. The host cleared all of the caches, disabled Object Caching. Still have the same problem.
Do you have any other ideas to fix this?
Forum: Plugins
In reply to: [Photo Gallery, Images, Slider in Rbs Image Gallery] Links to images disabledI did that, last week. https://prnt.sc/mUtUuDXGW7O_
No response yet.Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] bottom positioning?OK, thanks!
Forum: Plugins
In reply to: [WordPress Button Plugin MaxButtons] 5.10 crashed siteyes, I updated to 5.10 today and the site crashed. Before today, no problems.
Yeah, the theme I used for that particular website is the Avada theme and there is a section specifically for adding code to the space before </body> in the Theme Options. There is another section for adding code to the space before </head> which is where Google fonts and analytics code is added. The better themes seem to have these sections.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Download failed. Not FoundI just came across the same problem. Thanks for posting your fix!
I just came across this solution which perfectly suited my parameters.
Adding the following snippet to just before </body> tag
<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘.ngg-gallery-thumbnail img’).prop(‘title’, ”);
});
</script>Thanks! Works!
Greg
In plugins/nextgen-gallery/products/photocrati_nextgen/modules/ngglegacy/view/gallery.php I tried a few things until I eventually removed lines 35 and 38, (click link to see screenshot of the lines I removed: ( https://www.awesomescreenshot.com/image/765571/3827e616acd53c8d314ccd28f99030a2 ).
However, the image title still appears when hovering the cursor over a gallery thumbnail image. How can I prevent that from happening?
This is the code I have on the WordPress editor screen to generate the gallery on the front-end.:
<img class=”ngg_displayed_gallery mceItem” src=”https://rug.barkingbirdmedia.com/nextgen-attach_to_post/preview/id–1077″ alt=”” data-mce-placeholder=”1″ />
OK, thanks. It looks like I would then edit a line or two in my renamed gallery.php file, specifically the ones with the term alttext in it, correct?:
<!– Thumbnails –>
<?php foreach ( $images as $image ) : ?><div id=”ngg-image-<?php echo $image->pid ?>” class=”ngg-gallery-thumbnail-box” <?php echo $image->style ?> >
<div class=”ngg-gallery-thumbnail” >
imageURL ?>” title=”<?php echo $image->description ?>” <?php echo $image->thumbcode ?> >
<?php if ( !$image->hidden ) { ?>
<img title=”<?php echo $image->alttext ?>” alt=”<?php echo $image->alttext ?>” src=”<?php echo $image->thumbnailURL ?>” <?php echo $image->size ?> />
<?php } ?>
</div>
</div>