Forums Forums Search Search Results for 'Elementor'

Viewing 10 results - 751 through 760 (of 1,069 total)
  • Author
    Search Results
  • #228260

    Anonymous
    Inactive

    HI Trevor,

    Thank you for the prompt response. I do not have elementor pro, will it work without it?
    Also, I have all the data in the Tablespress tables, and I want S&F to organize those on every page. Is that possible? If not, will i have to add each movie and show in a “post type” for S&F to recognize and organize them?

    I’m a newbie at coding so can’t do or understand a lot of code either. Please let me know.

    Thanks!


    Anonymous
    Inactive

    Hello!

    I have a question – is it possible to place few different search forms on the same page and make them work together?

    I’m using elementor. And the thing is that I want to display my posts in the grid instead of one under the other. And we have a lot of categories / tags that a user can filter by. So if I’m using just one filter form, in the sidebar (search, categories, tags), it leaves me with A LOT of white space in the main posts container. Especially after at least one filter is applied.

    So I want to have them separated, in bookmarked columns, so user can switch between bookmarks for different filtering options.

    But when I have 3 separate filter forms: for search form, for categories filter and for tags – they don’t work “together”. When I filter by a category, the tags count doesn’t change. And when I want to apply a category filter and a tag filter together – it’s not possible at all. It’s either one or the other.

    Or maybe there’s a way to ‘bookmark’ filter terms in one filter form, so each term has it’s own ‘column’?

    i hope I made things clear enough… Let me know if you have any questions!

    Cheers,
    Bartek

    #228174

    Trevor
    Participant

    You are using Elementor? You would create the page layout you want and add a text or shortcode element and place the form shortcode where you want the form. This post explains the process for Elementor:

    https://support.searchandfilter.com/forums/topic/how-can-i-search-elemntor-column-while-retaining-the-design-of-that-column/#post-209754

    #228171

    Trevor
    Participant
    #227931

    Trevor
    Participant

    Generally speaking, the theme (or, in this case, Elementor Pro) handles such things as page titles. Our plugin does not.

    Elementor elements do not have the ability to fetch search filters from our plugin, but, using PHP, you might find a way to do this. Normally, if you intend to use Ajax to refresh the results, such PHP has to run inside the Ajax Container, but I do not think, with Elementor, you can access that part of their code, so you may need to forgo the use of Ajax (disable it) to refresh the results.

    The coding is likely to be complex, but this thread might help you:

    https://support.searchandfilter.com/forums/topic/accessing-field-slug-on-search-results/

    … and this search will give similar threads I think:

    https://support.searchandfilter.com/forums/search/sf_current_query+get_array


    Anonymous
    Inactive

    Hi,

    I have multiple taxonomies as well as categories. However using elementor pro template dynamic archive heading – this heading doesn’t change or update when i choose this or that category or other taxonomy.

    How do I solve that?

    Many thanks in advance.


    Anonymous
    Inactive

    OK, let’s then wait for a fix for Elementor. Cheers.


    Trevor
    Participant

    We are trying to get the V3 Pro Addon plugin finished right now, so resources to support the current version are based on urgent need (number users affected). V3 will be two plugins; a free core plugin and the Pro addon (both needed). The Pro version has an API that allows extensions.

    Up until now we have produced ad hoc support for themes and page builder plugins as the need arose. With V3 we will produce official support extensions, and I imagine that Elementor (plus Elementor anywhere and JetEngine.

    Timing I am not sure about. Custom work we do not do, sorry.

    #227659

    In reply to: Search won't update


    Trevor
    Participant

    It looks like you are using the JetEngine (I think) in Elementor.

    It will need a different setup. I think it will need to be a Custom display results method, but that will fix it to the properties page, rather than the individual category pages?

    For now though, leave it as it is, and try changing the Ajax Container from #main to .jet-listing-grid__items

    #227478

    Anonymous
    Inactive

    i create search form, i use shortcode, i create page with my shortcode but the results not good,
    i use like this:

    function select_artist_in_filter_page() {
    	$args = array('post_type' => 'artist','posts_per_page' => -1);
        $my_query = new WP_query($args);
       if($my_query->have_posts()) {
    		echo '<div class="elementor-container elementor-column-gap-default">
    		<div class="elementor-row">
    				<div class="elementor-element elementor-element-80b276a elementor-column elementor-col-100 elementor-top-column" data-element_type="column">
    			<div class="elementor-column-wrap  elementor-element-populated">
    					<div class="elementor-widget-wrap">
    				<div class="elementor-element elementor-element-62b3681 elementor-grid-4 elementor-grid-tablet-4 elementor-grid-mobile-1 elementor-posts--thumbnail-top elementor-card-shadow-yes elementor-posts__hover-gradient elementor-widget elementor-widget-archive-posts" data-element_type="widget" data-widget_type="archive-posts.archive_cards">
    				<div class="elementor-widget-container">
    					<div class="elementor-posts-container elementor-posts elementor-grid elementor-posts--skin-cards elementor-has-item-ratio">';
            while($my_query->have_posts()) { 
    			$my_query->the_post();
                $custom = get_post_custom(get_the_ID());
    			$image = wp_get_attachment_image_src( get_post_thumbnail_id( $args->ID ), 'single-post-thumbnail' ); // the images for the artist	
    			echo '<article class="elementor-post elementor-grid-item post-170 artist type-artist status-publish has-post-thumbnail">
    			<div class="elementor-post__card">
    			<a class="elementor-post__thumbnail__link" href="'.get_permalink($args->ID).'">
    			<div class="elementor-post__thumbnail"><img height="150" src="'.$image[0].'" alt=""></div>
    		</a>
    				<div class="elementor-post__text">
    				<h3 class="elementor-post__title">
    			<a href="'.get_permalink($args->ID).'">'.get_field('artist_name').'</a>
    		</h3>
    				</div>
    				<div class="elementor-post_meta-data" style="text-align: center; background: #d80159;">
    				<a class="elementor-post__read-more" href="tel:'.get_field('Artist_Phone').'">'.get_field('Artist_Phone', $args->ID).'</a>
    				</div>
    				<div class="elementor-post__meta-data">
    					<span class="elementor-post-avatar">
    		המלצות: '.get_comments_number($my_query->ID).'	</span>
    				</div>
    					</div>
    						</article>';
    	   }
    		echo '</div></div></div></div></div></div></div></div>';
    	   wp_reset_postdata();
       }
    }
    
    function select_artist_in_filter_page_reset() { // reset the loop
    	ob_start();
    		select_artist_in_filter_page();
    	return ob_get_clean();
    }

    but i not see the real options, i see all artist i need to see the artist with location i choose in fitlers:
    https://mesibot.linuxisrael.co.il/filterresults/?_sft_location_artist=%d7%9b%d7%9c-%d7%94%d7%90%d7%a8%d7%a5
    this is the url

    way is not working ?

Viewing 10 results - 751 through 760 (of 1,069 total)