Luke McDonald
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] More Products Per Page Not WorkingUpdate: More specifically, it turns out the issue was related to Jetpack’s Infinite Scroll functionality. Turning off the Infinite Scroll fixed my issue. Below is a function to disable Infinite Scroll support for WooCommerce if needed.
function themename_woocommerce_infinite_scroll_support( $supported ) { return ( is_shop() || is_product_taxonomy() ) ? false : $supported; } add_filter( 'infinite_scroll_archive_supported', 'themename_woocommerce_infinite_scroll_support' );
Forum: Plugins
In reply to: [WooCommerce] More Products Per Page Not WorkingHi Erik,
I was experiencing the same issue this morning while working locally where I have Jetpack enabled along with the
jetpack_development_mode
filter. Removing thejetpack_development_mode
filter seemed to fix the issue for me. If you have Jetpack enabled or this filter, try disabling them.- This reply was modified 7 years, 7 months ago by Luke McDonald.
Forum: Reviews
In reply to: [Footer Credits] Not workingHi @yuvalg72,
More than likely the plugin is not working because the theme you are using does not support it. It might be possible to contact your theme developer and see if they’d be interested in adding support for the plugin. More information on how to add support for footer credits can be found here:
https://www.ads-software.com/plugins/footer-credits/other_notes/
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Adding Featured PhotoYou’re welcome!
Forum: Themes and Templates
In reply to: [Twenty Sixteen] How to Change Page Title Font-SizeSure, I can provide an example below. There are additional examples in the link I provided as well.
@media screen and (min-width: 61.5625em) { body { background-color: #ff0000; } .entry-title { font-size: 60px; } }
Forum: Themes and Templates
In reply to: Posts to BlogGreat, good to hear!
Forum: Themes and Templates
In reply to: [Twenty Sixteen] How to Change Page Title Font-SizeGreat, good to hear!
Yes, any additional rules you want to add for that screen size and up can be added inside the CSS media query brackets.
Forum: Themes and Templates
In reply to: Posts to BlogYou’ll need to create a new page for your blog. You can then set the front page to use your Home page and the posts page to use your Blog page.
This can be done by:
- Go to the Customizer
- Click the Static Front Page section
- Set “Front page displays” to “A static page.”
- Set the “Front page” to use the Home page you created.
- Set the “Posts page” to use the Blog page you created.
- Click “Save & Publish” at the top of the customizer panel.
Once this is finished, you can create new Posts. Your posts will display on your Blog page.
Don’t forget to add your Blog page to your navigation, too.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] How to Change Page Title Font-SizeThe entry title’s font size changes at different screen size break points.
To change the font size for this element for screens 985px and larger you can try adding the following to your custom CSS rules.
@media screen and (min-width: 61.5625em) { .entry-title { font-size: 60px; } }
Note: If you’re not using a plugin like Simple Custom CSS or Jetpack’s CSS module, you’ll want to be sure and make the customizations via a child theme.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Adding Featured PhotoHave you tried adding a featured image? Does that do what you’re looking to do?
Forum: Themes and Templates
In reply to: Category page and paginationIs there any reason you’re trying to modify the query? If so, you should probably use new WP_Query instead query_posts(). In anycase, below is some untested code that may work.
<?php if ( function_exists( 'wp_pagenavi' ) ) : ?> <div class="custom-pager"> <?php wp_pagenavi(); ?> <div class="clearfix"></div> </div> <?php endif; ?> <?php while( have_posts() ) : the_post(); ?> <section class="vesti-box"> <div class="row"> <div class="col-md-5 col-sm-4"> <a href="<?php the_permalink(); ?>"> <span class="img-holder"> <?php $image = get_template_directory_uri() . '/img/bg/placeholder.jpg'; $attachment_id = get_field( 'naslovna_slika_vesti' ); if ( ! empty( $attachment_id ) ) { $image = wp_get_attachment_image_src( absint( $attachment_id ), 'newslistingImage' ); $image = $image[0]; } ?> <img src="<?php echo esc_url( $image ); ?>" alt="Управа за аграрна пла?а?а" class="img-responsive"> </span> </a> </div> <div class="col-md-7 col-sm-8 nopadding"> <?php the_title( '<h4><a href="' . esc_url( get_permalink() ) . '">', '</a></h4>' ); ?> <small><i class="fa fa-clock-o"></i> Об?ав?ено: <strong><?php the_time( 'j. F Y.' ); ?></strong></small> <div class="news-txt"> <?php my_excerpt( 'bigshort' );?> </div> <a href="<?php the_permalink(); ?>" class="detailed-red">Дета?ни?е</a> </div> </div> </section> <?php endwhile; ?> <?php if ( function_exists( 'wp_pagenavi' ) ) : ?> <div class="custom-pager"> <?php wp_pagenavi(); ?> </div> <?php endif; ?>
Forum: Reviews
In reply to: [Footer Credits] not working this the last wordpress versionHi @zampai,
As stated in the description, the Footer Credits plugin only works with themes that have added support for it. If your theme doesn’t work with Footer Credits, try asking the theme developer to add support. Instructions for adding support can be found in the Other Notes section.
Once your theme has support, please consider trying the plugin again and adjusting your rating.
Forum: Themes and Templates
In reply to: remove footer from obsidian themeGreat, good to hear!
Forum: Themes and Templates
In reply to: remove footer from obsidian themeWe have a free plugin available for managing the footer credits. You can download it and find instructions here:
https://www.ads-software.com/plugins/footer-credits/
All AudioTheme music themes support this plugin.
As an AudioTheme customer, you can get priority support by submitting a new ticket here:
https://audiotheme.com/account/support/
Let me know if you have any questions.
Forum: Fixing WordPress
In reply to: Problems editing archive pages with Audiotheme PromenadeGreat, thanks for understanding!