clane_workforce
Forum Replies Created
-
Hello,
I have the opposite problem now. Category will not display in my search form without the Styling Options (Advanced) (Beta) and click NO. I have added code to my Template files to show Tags as detailed below.
Event Page: https://www.workforcesoftware.com/newsroom/events/
events-list.php
$args = apply_filters('em_content_events_args', $args); if ( !empty($_REQUEST['search-tag']) ){ $args['tag'] = $_REQUEST['search-tag']; } $args = apply_filters('em_content_events_args', $args); if( get_option('dbem_css_evlist') ) echo "<div class='css-events-list'>"; echo EM_Events::output( $args ); if( get_option('dbem_css_evlist') ) echo "</div>";
events-search.php
…//categories if( !empty($args['search_categories']) ) em_locate_template('templates/search/categories.php',true,array('args'=>$args)); //tags $selected = !empty($_REQUEST['search-tag']) ? $_REQUEST['search-tag'] : 0; wp_dropdown_categories(array( 'hide_empty' => 0, 'name' => 'search-tag', 'hierarchical' => true, 'taxonomy' => EM_TAXONOMY_TAG, 'selected' => $selected, 'show_option_none' => 'All Regions', 'class'=>'em-events-search-tag'));
Can you help me get the Categories back in the Search?
Thank you for a great plugin and support it is greatly appreciated:)
Hi there,
I just tried it in a different site and it does the same thing. I don’t think it is accepting alpha or special characters that is the issue.
Have you tried to use that Zip code?
No this is not a new install. Is there something I can do?
When I save this postcode or ZIP (exactly this text below)
C.P. 01210 México D.F.
it gives the following error and will not save the Events > Locations > MY LOCATION IN MEXICO.
“Your location details are incorrect and cannot be published, please correct these errors first:
Something went wrong updating your location to the index table. Please inform a site administrator about this.”
Hello,
I am using the latest stable version 5.6.4
Forum: Plugins
In reply to: [Yoast SEO] Taxonomy to show in breadcrumbs for post typesHi there if you can tell me where the option lives in wordpress i can remove it
Forum: Plugins
In reply to: [Yoast SEO] Taxonomy to show in breadcrumbs for post typesThis is a wide-spread issue. The settings cannot be changed after saving at all any of them.
Forum: Plugins
In reply to: [Polylang] Theme translateHello This is not printing in the footer the different strings for each language.
Forum: Plugins
In reply to: [Tabsy] Clicking a tab makes the page scroll downDid you get this fixed? I am having the same issue. Your help will be appreciated. I can fix if you provide the patch.
Thank you!
~CForum: Plugins
In reply to: [SSL Insecure Content Fixer] Redirect shows 404Hello Ross,
Thank you for your reply. I am using WordPress Redirection: https://www.ads-software.com/plugins/redirection/ as WordPress Redirects.
Kind regards,
ColetteForum: Themes and Templates
In reply to: PHP in HTMLHello,
Thank you for the help Leland Fiegel! I thought I should provide my code in context. I also want to sort the post results by post type. I am using Search & Filter Pro with a custom template for my results to filter Media Attachments and Posts. I have added a category to my Media Attachments for the filtering.
I want the Featured Image from the post to be linked to the post, but it is not linked and it seems to be using my “if” statement and grabbing the image without a link.
I’m sure my code could be better written—this is a really raw implementation. Your help is greatly appreciated:)
<?php if ( $query->have_posts() ) { ?> <?php while ($query->have_posts()) { $query->the_post(); ?> <div id="sf-results"> <?php $post = get_post($media_item_id); if ($post && $post->post_type == 'attachment') { echo wp_get_attachment_image( $attachment->ID, 'full' ); echo '<p><em>'; echo the_category(" "); echo '</em></p>'; } else { echo '<a href="'. get_permalink() .'" title="'. the_title_attribute( array( 'echo' => 0 ) ) .'">' . the_post_thumbnail() . '</a>'; echo '<h4><a href="'. get_permalink() .'" title="'. the_title_attribute( array( 'echo' => 0 ) ) .'">'. get_the_title() .'</a></h4>'; echo '<p><em>'; echo the_category(" "); echo '</em></p>'; echo '<p>'; echo excerpt('20'); echo'</p>'; } ?> </div> <?php } ?> <div class="pagination"> <?php /* example code for using the wp_pagenavi plugin */ if (function_exists('wp_pagenavi')) { wp_pagenavi( array( 'query' => $query ) ); } ?> </div> <?php } else { echo "No Results Found"; } ?>
Forum: Plugins
In reply to: [Polylang] Flags in Select List WidgetHello,
Is it possible to have a language switcher like this plugin with Polylang?
https://demo-store.wpglobus.com/
We like the flags in the drop down menu.
Forum: Plugins
In reply to: [Polylang] Flags in Select List WidgetWe really need the icons in the list drop down. Is there any way I can get this instead of just the text names?
I have the same issue.