Kristina Romero
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] How to Exclude Dates from Event?Okay, found a workaround using CSS:
/* CALENDAR EXCLUDE */ #event_285-22, #event_285-23, #event_285-24, #event_285-25, #event_285-26 {display: none;}
The first number is that of the event id and the second is the number of the day. Simple workaround for an easy fix.
Forum: Plugins
In reply to: [The Events Calendar] Impossible to do a simple linking to a page or postIf you view the other support topics, you see this is what everyone is experiencing. I’ve got more even more problems than that – all in all, I’ve just rolled back to the pre-3.0 version for now (link is available under the developers tab). It’s a great plugin, so I hope they fix these bugs for 3.0 soon so we can upgrade.
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] "Subscribe" button textPerfect, thanks!
Here’s what I did to fix it:
I overrode the setting in my theme’s CSS for the IE9 rotation ms-transform. I just adjusted -ms–transform to be NON rotated:
#sod-drawer-plugin .rotate {
-ms-transform: rotate(0deg) !important;
}and that worked – which is weird… But, hey, if it works it works.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Update Broke my PodsOh my goodness, that one went right over my head. Thank you for your quick reply!
cad60k – I solved our problem!
We need to be using the plugin Gravity Forms Salesforce Web to Lead Add-On NOT the Gravity Forms Salesforce API add-On.
I just had it in the my plugins and activated in, put in my organization ID and all worked!
This is what is in search.php
<?php if ( have_posts() ) : ?> <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'merchant' ), '<span>' . get_search_query() . '</span>' ); ?></h1> <?php /* Run the loop for the search to output the results. * If you want to overload this in a child theme then include a file * called loop-search.php and that will be used instead. */ get_template_part( 'loop', 'search' ); ?> <?php if ( function_exists( 'ngg_images_results' ) && have_images() ) : ?> <h1 class="page-title">Image Search Results</h1> <?php ngg_images_results(); ?> <?php endif; ?> <?php elseif ( function_exists( 'ngg_images_results' ) && have_images() ) : ?> <h1 class="page-title">Image Search Results</h1> <?php ngg_images_results(); ?> <?php else : ?> <div id="post-0" class="post no-results not-found"> <h2 class="entry-title"><?php _e( 'Nothing Found', 'merchant' ); ?></h2> <div class="entry-content"> <p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'merchant' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </div><!-- #post-0 --> <?php endif; ?>
Here’s a workaround I found:
Open album-compact.php in the “view” folder of the NextGen plugin folder (or which album view you are using).
Find the a href link to the subgallery:
<?php echo $gallery->pagelink ?>
and replace it with
<?php echo $gallery->pagelink ?>&pid=1
This will take the gallery to the first image of the ImageBrowser and not the subgallery!