Forums Forums Search Search Results for 'themify'

Viewing 10 results - 21 through 30 (of 35 total)
  • Author
    Search Results
  • #172293

    Anonymous
    Inactive

    Themify (https://themify.me/) recently pushed an update to their themes where using Search & Filter Pro breaks the Query Post function in WordPress. I contacted them about it, but they said you would have a better idea why this happens than they do.

    #169478

    Anonymous
    Inactive

    Ok,
    I contacted the Themify support.
    Hopefully they can help with this conflicting issue and make it compatible.
    This might actually be good for both the plugin and the Theme
    Thank you for your Time Trevor.

    #169066

    Trevor
    Participant

    Does themefy not have a page builder?

    https://themify.me/builder

    #133401

    Anonymous
    Inactive

    I can search for the shortcode itself but that’s pretty useless. Not sure if this is a problem with the search and filter plugin, the theme I’m using (flow by themify) or the content blocks plugin…

    #120432

    Trevor
    Participant

    Hi

    I have taken a look at the settings. You have selected Post Type Archive as the Display Results method, but are the using the search on a WordPress (constructed) ‘Page’, which is not what WordPress thinks is the ‘Post’ post type archives page (this is not set on your site).

    Having seen other users with Themify builder, I know that, for the current version of Search & Filter, you will need to use the Shortcode method. For now, do not concern yourself with the appearance, but set up a test page and make sure that the searching is correct, then come back and ask for help making the template produce the grid, or at least a grid that will book better than the simple list. But, do note that grids are hard to build.

    #109884

    Trevor
    Participant

    Ok. Now we have spoken on Skype, you will need to learn much about WordPress, as you are a beginner in this. You have Themify theme. You have (correctly) made a CPT called sports, and you need to see how to make an archives page for that in Themify, and then add the form (with a widget or shortcode) and try setting the S&F form to Post Type Archive display method, and see if that works. Otherwise, in that theme, the alternative is to use the Shortcode display results method.

    It is possible to customise the template for that, which is shown in our documentation here.

    You may want to search for other users of Themify on this forum:

    https://support.searchandfilter.com/forums/search/themify/

    For further help on how to do this.

    #105882

    Trevor
    Participant

    The first set is built inside/with Visual Composer and the second set is built with Themify Builder.

    That might give you a hint as to where to look?

    #59816

    Anonymous
    Inactive

    Please view this. http://college.ideabatch.com/books/

    Other page is build by Themify Search but we want custom filter feature thats why we purchase your plug in.

    PS. The site is for demo purpose now

    #35966

    Anonymous
    Inactive

    Hello,

    I have theme Metro active and want to use search and filter pro on my site however results wont show up. I have found the FAQ (https://www.designsandcode.com/wordpress-plugins/search-filter-pro/faqs/) but my search.php file looks like this and i cant figure out how to let this work:

    <?php get_template_part( ‘index’,’search’); ?>

    And my index.php like this:

    <?php get_header(); ?>
    
    <?php
    /** Themify Default Variables
     *  @var object */
    global $themify; ?>
    		
    <!-- layout -->
    <div id="layout" class="pagewidth clearfix">
    
    	<?php themify_content_before(); //hook ?>
    	<!-- content -->
    	<div id="content">
        	<?php themify_content_start(); //hook ?>
    		
    		<?php if(is_front_page() && !is_paged()){ get_template_part( 'includes/welcome-message'); } ?>
    
    		<?php 
    		/////////////////////////////////////////////
    		// Author Page	 							
    		/////////////////////////////////////////////
    		?>
    		<?php if(is_author()) : ?>
    			<?php
    			$curauth = (isset($_GET['author_name'])) ? get_user_by('slug', $author_name) : get_userdata(intval($author));
    			$author_url = $curauth->user_url;
    			?>
    			<div class="author-bio clearfix">
    				<p class="author-avatar"><?php echo get_avatar( $curauth->user_email, $size = '48' ); ?></p>
    				<h2 class="author-name"><?php printf( __( 'About %s','themify' ), apply_filters( 'the_author', $curauth->display_name ) ); ?></h2>
    				<?php if($author_url != ''): ?><p class="author-url"><a href="<?php echo $author_url; ?>"><?php echo $author_url; ?></a></p><?php endif; //author url ?>
    				<div class="author-description">
    					<?php echo $curauth->user_description; ?>
    				</div>
    				<!-- /.author-description -->
    			</div>
    			<!-- /.author bio -->
    			
    			<h2 class="author-posts-by"><?php printf(__('Posts by %s:','themify'), $curauth->display_name); ?></h2>
    		<?php endif; ?>
    
    		<?php 
    		/////////////////////////////////////////////
    		// Search Title	 							
    		/////////////////////////////////////////////
    		?>
    		<?php if(is_search()): ?>
    			<h1 class="page-title"><?php _e('Search Results for:','themify'); ?> <em><?php echo get_search_query(); ?></em></h1>
    		<?php endif; ?>
    	
    		<?php
    		/////////////////////////////////////////////
    		// Date Archive Title
    		/////////////////////////////////////////////
    		?>
    		<?php if ( is_day() ) : ?>
    			<h1 class="page-title"><?php printf( __( 'Daily Archives: <span>%s</span>', 'themify' ), get_the_date() ); ?></h1>
    		<?php elseif ( is_month() ) : ?>
    			<h1 class="page-title"><?php printf( __( 'Monthly Archives: <span>%s</span>', 'themify' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'themify' ) ) ); ?></h1>
    		<?php elseif ( is_year() ) : ?>
    			<h1 class="page-title"><?php printf( __( 'Yearly Archives: <span>%s</span>', 'themify' ), get_the_date( _x( 'Y', 'yearly archives date format', 'themify' ) ) ); ?></h1>
    		<?php endif; ?>
    
    		<?php 
    		/////////////////////////////////////////////
    		// Category Title	 							
    		/////////////////////////////////////////////
    		?>
    		<?php if(is_category() || is_tag() || is_tax() ): ?>
    				<h1 class="page-title"><?php single_cat_title(); ?></h1>
    				<?php echo $themify->get_category_description(); ?>
    		<?php endif; ?>
    
    		<?php 
    		/////////////////////////////////////////////
    		// Default query categories	 							
    		/////////////////////////////////////////////
    		?>
    		<?php if( !is_search() ): ?>
    			<?php
    			global $query_string;
    			query_posts( apply_filters( 'themify_query_posts_args', $query_string.'&order='.$themify->order.'&orderby='.$themify->orderby ) );
    			?>
    		<?php endif; ?>
    
    		<?php
    		// If it's a taxonomy, set the related post type
    		if( is_tax() ){
    			$set_post_type = str_replace('-category', '', $wp_query->query_vars['taxonomy']);
    			if( in_array($wp_query->query_vars['taxonomy'], get_object_taxonomies($set_post_type)) ){
    				query_posts('post_type='.$set_post_type);
    			}
    		}
    		?>
    
    		<?php 
    		/////////////////////////////////////////////
    		// Loop	 							
    		/////////////////////////////////////////////
    		?>
    		<?php if (have_posts()) : ?>
    		
    			<!-- loops-wrapper -->
    			<div id="loops-wrapper" class="loops-wrapper <?php echo $themify->layout . ' ' . $themify->post_layout; ?>">
    
    				<?php while (have_posts()) : the_post(); ?>
    		
    					<?php if(is_search()): ?>
    						<?php get_template_part( 'includes/loop' , 'search'); ?>
    					<?php else: ?>
    						<?php get_template_part( 'includes/loop' , 'index'); ?>
    					<?php endif; ?>
    		
    				<?php endwhile; ?>
    							
    			</div>
    			<!-- /loops-wrapper -->
    
    			<?php get_template_part( 'includes/pagination'); ?>
    		
    		<?php 
    		/////////////////////////////////////////////
    		// Error - No Page Found	 							
    		/////////////////////////////////////////////
    		?>
    	
    		<?php else : ?>
    
    			<p><?php _e( 'Sorry, nothing found.', 'themify' ); ?></p>
    	
    		<?php endif; ?>			
    	
        	<?php themify_content_end(); //hook ?>
    	</div>
    	<!-- /#content -->
        <?php themify_content_after() //hook; ?>
    
    	<?php 
    	/////////////////////////////////////////////
    	// Sidebar							
    	/////////////////////////////////////////////
    	if ($themify->layout != "sidebar-none"): get_sidebar(); endif; ?>
    
    </div>
    <!-- /#layout -->
    
    <?php get_footer(); ?>
    #33322

    Anonymous
    Inactive

    Thanks for great support 🙂

    Wordpress 4.4
    Themify Flow 1.1.7 Theme

    Plugins:
    Themify Builder
    Builder Button
    Builder Contact
    Builder Slider Pro
    Builder WooCommerce
    Coming Soon Page & Maintenance Mode by SeedProd
    Dokan – Multi-vendor Marketplace
    Store Locator Plus
    Store Locator Plus : Enhanced Map
    Store Locator Plus : Enhanced Results
    Store Locator Plus : Enhanced Search
    Store Locator Plus : Pro Pack
    Store Locator Plus : Tagalong
    UpdraftPlus – Backup/Restore
    WooCommerce
    WooCommerce Colors
    WooCommerce Menu Cart
    ZM Ajax Login & Register

Viewing 10 results - 21 through 30 (of 35 total)