unfortunately, despite hours of research, I still don’t understand anything. I have an events list in a grid view. Namely this one:
[events_list view=”grid” pagination=”1″]
I would now like to add a very simple search bar to this. For search terms with the corresponding “search button”. I would also like to be able to display events for individual months. I just can’t get a search bar added to my current result… I also found this:
[events_calendar view=”grid” long_events=1 full=1 show_search=1 has_search=1 views=calendar,list,grid,list-grouped scope=”future”]
It works fine, but it’s just the calendar view. It would be great if someone could give me a little help. Thanks!
Best regards
Printe
]]>You have some handy shortcodes for product and category queries. How can I get this to work for attributes also? I am setting things up so that there is an image. Now I would like to show them as grids or whereever convenient.
This is an example of attributes in grid setup manually (Grading) and then categories generated by the built in woo shortcode engine.
Also I used to be able to show my shop with categories first and then products in catalogues. Now shop only shows products but no categories…. Can I display both in catalogue view? I use block theme TT4.
Also when visiting a category, I could get it to show description. Can I do this anymore?
]]>This hasn’t happened previously – when loading other events in, the public has been allowed to click on the link, and so I believe it may be to do with the recent update to the plug-ins wordpress, but I thought I would check in case I’m missing a check box.
]]>Changing to the Grid View and selecting a category, the page refreshes to show only the media items that fit the category. This is the expected behavior
An example of the URL when doing a search in List View is https://byheart.org/wp-admin/upload.php?mode=list&attachment-filter&m=0&lang=en&media-taxonomy=background-images&filter_action=Filter&s&action=-1&paged=1&action2=-1&affected&_ajax_nonce=d1026c35c5&ps
An example of the URL when doing the same search in Grid View is https://byheart.org/wp-admin/upload.php?mode=grid&m=0&lang=en&media-taxonomy=background-images&filter_action=Filter&s&action=-1&paged=1&action2=-1&affected&_ajax_nonce=d1026c35c5&ps
]]>Ive tried various things but no effect.
<h3 class="em-item-title">#_EVENTLINK</h3>
Here are a couple of examples of what i’ve tried:
<h3 class="em-item-title" style="font-size: 20px;">#_EVENTLINK</h3>
<div class="em-item-title" style="font-size: 20px;">#_EVENTLINK</div>
and Additional CSS:
.em-item-title {
font-size: 10px !important;
}
]]>Is there any way to display categories and tags with grid view? I have grid view enabled and it works just fine in a shortcode — but with categories I either get a brief list without images if I have override with formats selected or a more formatted list with images if I have override with formats set to no — but never a grid. Is there any way to accomplish this?
Thanks
]]>em-functions.php
, the wrong names are used for the database option names when getting the event and location grid format header and footer. This means that if the user has defined grid format headers and/or footers in /user/wordpress/wp-content/themes/my-theme-of-choice/plugins/events-manager/formats
, the relevant files won’t be found.
Luckily, this is an easy fix, as shown below, where the fix is given in bold and line numbers (for EM 6.4.5.1) are shown in square brackets.
[892] function em_output_events_view( $args, $view = null ){
…
[911] if( empty($args['format_header']) ){
$args['format_header'] = get_option('dbem_event_grid_item_format_header');
}
[914] if( empty($args['format_footer']) ){
$args['format_footer'] = get_option('dbem_event_grid_item_format_footer');
}
…
}
[954] function em_output_locations_view( $args, $view = null ){
…
[973] if( empty($args['format_header']) ){
$args['format_header'] = get_option('dbem_location_grid_item_format_header');
}
[976] if( empty($args['format_footer']) ){
$args['format_footer'] = get_option('dbem_location_grid_item_format_footer');
}
…
}
Essentially, the database option names are missing _item
between _grid
and _format
. Easy mistake to make.
As far as I can tell, the correct database option names are used elsewhere.
]]>Example: https://drive.google.com/file/d/19x_j4QMvXUxyNzGySQMJWAPDDufcJGqs/view?usp=drive_link
I’m using an old event calendar to create a mockup of what I want. This is my current shortcode: [events_calendar long_events=1 long_events=1 show_search=1 has_search=1 views=grid,list year=2021 month=11]
I’m using the events_calendar shortcode because I need the search function.
Any thoughts would be greatly appreciated
]]>We are using Filebird Lite v5.3.2. The issue we have is that the Grid view does not work – the left panel does not load, and we get an error in the console on the Filebird app.js file.
The List view works fine and no error is seen on the console.
Is this a limitation of the Lite version, or some other issue that anyone has experienced in the past?
Thanks!
]]>