Greg Barr
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
When I use Inspector to see and real-time edit CSS, adding z-index of 1000 !important does the trick. But when I add the same CSS to my additional CSS in the customizer, it does not.
.ui-datepicker-div {z-index:1000 !important} .ui-datepicker {z-index:1000 !important}
Kiran, something went sideways with this when I upgraded Supreme theme. Now on those club pages, the listing of upcoming events shows the LAST event in the series, not the next.
This club page, for example, shows the June 26 instance of the club’s weekly tournament, instead of the April 3 instance.
Interesting. I hadn’t checked it not logged in so hadn’t seen that the date pickers work when you’re not logged in, but are layered behind the map. I have updated Supreme, thanks for looking into the situation.
I’ve had trouble before getting my nav to not disappear behind maps.
Specifically unable to fix that on my “set location” page which has some maps placed by shortcode. Can dev look at that too since it’s the same issue of layering?
https://cornholecentral.com/location/united-states/california/san-jose/This reply has been marked as private.May be pushing my luck, but I have a similar issue on event pages like this one. (vs. the club/organizations pages of my above problem)
I’m inserting into the sidebar of events pages a list of dates using the widget seen below, but there’s no way to set it to only display upcoming events. Any chance that is snippetable too?
I hadn’t the first time around cuz I tried to add to functions.php. The tip about using the Snippets plugin (which I already have/use) did the trick, thanks so much!
March 27, 2019 at 10:02 pm in reply to: WooCommerce Products Losing Images in GD Details Pages #476777Unchecking that box totally did the trick, thanks so much!!!
March 13, 2019 at 12:53 am in reply to: WooCommerce Products Losing Images in GD Details Pages #474251Good news: Disregard that. GD-details had unnecessarily become a Beaver Builder page which I know can monkey with GD pages, and when I disabled that it went back to working fine.
Bad news: WooCommerce product listings still aren’t working in CPTs that are defined by the gd-details page.
Example: https://cornholecentral.com/vendors/all-cornhole/
Product images no bueno. : (
But that vendor page features the exact same shortcode that presents the WooCommerce products on this page, where product images work fine.
March 12, 2019 at 6:05 pm in reply to: WooCommerce Products Losing Images in GD Details Pages #474195This reply has been marked as private.March 12, 2019 at 6:02 pm in reply to: WooCommerce Products Losing Images in GD Details Pages #474194Kiran, I updated all GeoDirectory plugins on my staging site. The problem persists, and the upgrade introduced a fairly major problem that I need help with. Not sure if I should spin up a new thread or if you want to handle it here. Let me know.
https://corncenstaging.wpengine.com/board-men-cornhole-gear/
still features broken images just like
https://cornholecentral.com/board-men-cornhole-gear/With the plugins updated (only change) my
Clubs CPT is presenting page content twice:
https://cornholecentral.com/aberdeen-cornhole-league/
https://corncenstaging.wpengine.com/aberdeen-cornhole-league/Credentials to follow…
March 7, 2019 at 1:57 am in reply to: WooCommerce Products Losing Images in GD Details Pages #473227Sorry, big thing to leave out. Here’s the URL for the vendor page above: https://cornholecentral.com/vendors/united-states/ohio/albany/apparel/local-bags/
I’m just including the WooCommerce shortcode as part of the page’s content, like this:
Local makes high-quality cornhole bags and cornhole boards.
[products ids=”4678,4688″ per_page=”4″ columns=”4″ orderby=”title” order=”ASC” operator=”IN”]Tried inserting into functions.php (with the code all in one piece copied from the other thread) and it did not work.
“Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.”
Can you please tell me more explicitly what I need to do?
Or do it with the admin access I granted above?Thanks Alex, but I’m not crystal clear how that’ll work. If I add those lines of code to functions.php…voila? The shortcode I’m already using will just start working the way I want? Or will I need to do something differently how/where I’m attempting to add the events?
function gd_snippet_widget_listings_query_args( $query_args, $instance ) { if ( ! empty( $query_args['linked_from_post'] ) && isset( $query_args['post_type'] ) && GeoDir_Post_types::supports( $query_args['post_type'], 'events' ) ) { if ( ! isset( $query_args['event_type'] ) ) { $query_args['event_type'] = 'upcoming'; } if ( ! isset( $query_args['single_event'] ) ) { $query_args['single_event'] = true; } $query_args['sort_by'] = 'event_dates_asc'; // Sorting $query_args['gd_location'] = false; // Current location filter } return $query_args; } add_filter( 'geodir_widget_listings_query_args', 'gd_snippet_widget_listings_query_args', 10, 2 );
This reply has been marked as private. -
AuthorPosts