Join our new community forum for support & discussion

Join Now

Home Support Themes ListingHive Featured listings and categories in carousel format

Featured listings and categories in carousel format

  • Author
    Posts
  • Carlos Magno

    @gabetu and @arielkbs Thank you very much for this very relevant topic. I’m trying to implement it on my site, but I don’t understand exactly how to do it. I created the script.js file in the folder in the site files following the same path as your link. Is it to add the call to this script on the homepage of the site? Could you help me, please?

    vitcher

    Wow, great topic! Can someone give step by step the working solution? With CodeSnippet to integrate? Thanks guys!

    aspirina

    @gabetu Hello , im almost done , but i cant make to show only the featured listings … can u help ?

    Big thanks for everything u write in this forum

    aspirina

    okay i fix it 🙂

    aspirina

    can someone tell me how to run the JS only on one page ,
    Its looks like this JS run on every existing page

    ihor developer

    If you add some JS code with a wp_enqueue_script or wp_add_inline_script functions you can try add the page check there, or if you use jQuery you can target a specific page only like this:
    $('.page-123 .anything')

    aspirina

    so in snippet , shoud be like this .. ?

    if ( ! is_page( [ 142] )  ) {
    		return;
    	} ?>
    <script>
    
    	/* js code goes here */
    
    	</script>
    ihor developer

    Yes, you can also wrap the whole code with add_action('wp_enqueue_scripts', function() { ... }); so it’ll run only after the template is loaded on the front-end (so the is_page function will work for sure).

Viewing 8 posts - 41 through 48 (of 48 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.