Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: 4.6 Update doesn't recognize old Custom CSS Class #1133487

    Sweet.
    All fixed and back to normal.

    in reply to: 4.6 Update doesn't recognize old Custom CSS Class #1132645
    This reply has been marked as private.
    in reply to: 4.6 Update doesn't recognize old Custom CSS Class #1132430

    Doesn’t work saving elements as well. Still, there’s a ton of custom CSS classes added on each page, if I had to go through all of them, it would take ages.
    A better solution is required.

    in reply to: ACF Frontend Form Issue #967146

    Thanks for the update.

    As I am using relatively same setup on few other sites and I am using a child theme on all of them, can you please let me know if this fix can be done via child theme instead? Plus is there any chance of this conflict getting fixed in next updates?

    Regards

    in reply to: ACF Frontend Form Issue #966663

    Sure. Please check

    Thanks guys, for the sake of everyone else who is looking for a similar solution, here is the pastebin link for the full code
    http://pastebin.com/2Fhk8818

    Resolved!

    I have a custom post type called properties. With custom fields created template for the archive, on child theme archive-properties.php
    I am using the following loop code to get the posts on the properties archive page.

    
    <?php
    					 
    					$args = array(
    					    'posts_per_page' => '10',
    					    'post_type' => 'properties'
    					);
    					 
    					// Custom query.
    					$query = new WP_Query( $args );
    					 
    					// Check that we have query results.
    					if ( $query->have_posts() ) {
    					 
    					    echo '<div class="showcase-posts">';
    					 
    					        // Start looping over the query results.
    					        while ( $query->have_posts() ) {
    					 
    					            $query->the_post();
    					 
    					            ?>
    					 
    					            <div <?php post_class( 'showcase-post' ); ?>>
    					            	<div class="showcase-post-thumbnail">
                                          <a href="<?php the_permalink(); ?>">
                                          		<?php if ( has_post_thumbnail() ) { the_post_thumbnail('medium'); }  ?>
                                          </a>
                                       </div>
    					                <div class="showcase-right">
                                            <div class="showcase-post-title">
                                                <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
                                                    <?php the_title(); ?>
                                                </a>
                                            </div>
                                          <div class="showcase-price">
                                            $<?php the_field('price') ?>
                                          </div>
                                          <div class="showcase-address">
                                            <?php the_field('address') ?>
                                          </div>
                                          <div class="showcase-bedrooms">
                                            <i class="fa fa-bed"></i> <?php the_field('bedrooms') ?> Bedrooms
                                          </div>
                                          <div class="showcase-bathrooms">
                                            <i class="fa fa-tint"></i> <?php the_field('bathrooms') ?> Bathrooms
                                          </div>
                                          <div class="showcase-size">
                                            <i class="fa fa-exchange"></i> <?php the_field('size') ?> s.f.
                                          </div>
                                          
                                          
                                      	</div>
                                      
    					            </div>
    					 
    					            <?php
    					     
    					        }
    					 
    					    echo '</div>';
    					 
    					}
    					 
    					// Restore original post data.
    					wp_reset_postdata();
    					 
    					?>
    

    Everything is good but just need the pagination to be working. I would like to use the pagination that is used on blog archive or any archive pages on this theme.

    So, if there is any way to integrate that into the archive-properties.php file, please let me know.

    Thanks in advance

    in reply to: Any way to use the ajax search outside the menu? #406240

    I got mine working with WooCommerce Predictive Search LITE. But it would be awesome if I can use enfold’s own search. Will definitely try the changes peter proposed.. Will update soon.

    Thanks!

    in reply to: Uncaught SyntaxError on avia.js, shortcodes.js & jquery.js #397563

    Hello Ismael

    I later found the fix. I had to re-upload the theme files once again. Thanks.

    Love using enfold!

    Mamun.

Viewing 9 posts - 1 through 9 (of 9 total)