Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter Kushal Jayswal

    (@kutec)

    Before caching it was working.

    But, after enabling W3C Total Cache plugin, it’s not working.
    Link: https://teckstack.com/responsive-design-mistakes

    Plugin Author Alex Alexandru

    (@vortexthemes)

    Hello sorry for late response we don’t provide support on Saturday.Indeed on arhive does not apper I will make an update.However for Home/Index did you check Display buttons on: Posts Index ? I will check the cache issue now.

    Plugin Author Alex Alexandru

    (@vortexthemes)

    So for me it’s working in Arhive if I check Posts Index.

    Plugin Author Alex Alexandru

    (@vortexthemes)

    For the caching issue empty minify cache and page cache.

    Thread Starter Kushal Jayswal

    (@kutec)

    I have checked for post and archive pages and further I checked after clearing all cache but nothing works for me.

    Plugin Author Alex Alexandru

    (@vortexthemes)

    If you disable w3 cache does it work?

    Plugin Author Alex Alexandru

    (@vortexthemes)

    I see you move the buttons with jQuery we have a function to display the buttons to be used in the themes file the single.php template or what or theme uses to display single post(single.php or content.php depends on the theme).Note this function can be also be used inside the loop.Never use outside the loop.
    Place the code in theme file where you want the buttons to show up.
    <?php if(function_exists(‘vortex_render_for_posts’)){
    function vortex_render_for_posts();
    }
    ?>
    Depending again on the theme the php tag may be remove or not.Let me know if is working.If you use this function you can uncheck the display on settings.

    Plugin Author Alex Alexandru

    (@vortexthemes)

    <?php if(function_exists('vortex_render_for_posts')){
    function vortex_render_for_posts();
    }
    ?>
    Plugin Author Alex Alexandru

    (@vortexthemes)

    This is the right code to be used to above is broken
    <?php if(function_exists(‘vortex_render_for_posts’)){
    vortex_render_for_posts();
    }
    ?>

    Plugin Author Alex Alexandru

    (@vortexthemes)

    Forgot to add the echo here is the final code

    <?php 	if(function_exists('vortex_render_for_posts')){
    				echo vortex_render_for_posts();
    			}
    	?>

    Plugin Author Alex Alexandru

    (@vortexthemes)

    Any update?Have you tried to put this code in your themes file to generate the buttons instead of moving them using jQuery?

    <?php 	if(function_exists('vortex_render_for_posts')){
    				echo vortex_render_for_posts();
    			}
    	?>

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Not coming on Index and Archive Pages’ is closed to new replies.