Forum Replies Created
-
AuthorPosts
-
September 3, 2019 at 5:52 pm in reply to: 4.6 Update doesn't recognize old Custom CSS Class #1133487
Sweet.
All fixed and back to normal.September 1, 2019 at 7:35 am in reply to: 4.6 Update doesn't recognize old Custom CSS Class #1132645This reply has been marked as private.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.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
Sure. Please check
March 5, 2016 at 6:26 pm in reply to: Using enfold's pagination on customized archive page template #593769Thanks 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/2Fhk8818Resolved!
March 3, 2016 at 5:42 am in reply to: Using enfold's pagination on customized archive page template #592430I 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
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!
February 17, 2015 at 4:02 pm in reply to: Uncaught SyntaxError on avia.js, shortcodes.js & jquery.js #397563Hello Ismael
I later found the fix. I had to re-upload the theme files once again. Thanks.
Love using enfold!
Mamun.
-
AuthorPosts