acostas
Forum Replies Created
-
Forum: Plugins
In reply to: [Elementor Website Builder - More Than Just a Page Builder] GeneratePressGeneratePress (with child theme) and Elementor works just perfect for me.
Thank you a lot, it worked!:D
Cause i am not very familiar with scripts etc and I made a deep search for this, in case someone is wondering how to add this script on a child theme here are my steps:
Make a file (for example) slider-restart.js with the script below and upload it to wp-content/themes/your-child-theme-name/js dir.jQuery(document).ready(function($) { $('.flex-direction-nav a').live( "touchstart click", function() { $(this).parents('.flexslider').flexslider("play") }); });
In your child theme editor (wp-admin/theme-editor.php) choose functions.php and paste these lines at the end:
function theme_js() {
wp_enqueue_script( 'theme_js', get_stylesheet_directory_uri() . '/js/restart-slider.js', array( 'jquery' ), '1.0', true );
}add_action('wp_enqueue_scripts', 'theme_js');
and you are done!
Forum: Themes and Templates
In reply to: [Morphology Lite] Image Post limit with categories(?)Oh silly me! i forgot about it! Thanks so much, have a good one:)
Forum: Themes and Templates
In reply to: [Morphology Lite] Image Post limit with categories(?)Thanks for the reply and the links, and yes I think I have knowledge of that.
So here is a link of the site I build for a friend.
https://outofthebox-engineers.com/category/residential/
In this category (which is called “residential”) I have 12 posts, but only 10 appears.
The “Image Post Template Count” is set to 30. If I enable “Show Blog Navigation” I can see the “Older Posts” link at bottom but it’s not what I want. I need all the 12 posts in that page/category to be shown.
Thanks again for your time.