Forum Replies Created

Viewing 15 replies - 31 through 45 (of 152 total)
  • Plugin Author Idiom

    (@brianbrey)

    Hi Robin – Can you send me a link to your page?

    Plugin Author Idiom

    (@brianbrey)

    Hi Jules – Sorry, we currently do not support whatsapp.

    Plugin Author Idiom

    (@brianbrey)

    Thanks for downloading. Are you still experiencing this issue? Testing in our environment and posting to Facebook closes the window. I’m not sure if that is some kind of Facebook setting though that can be changed in your app settings.

    Plugin Author Idiom

    (@brianbrey)

    Hi, I tested your function on a blank wordpress install (though I did the string replace for http to https) and your code worked perfectly. Are you sure there might not be another plugin that could be updating urls in the html before the page is rendered? One way you could test, besides disabling plugins, is manually add the sharing buttons to your templates with the shortcode. That way if there you’ll be able to see if there is anything else filtering ‘the_content’.

    Plugin Author Idiom

    (@brianbrey)

    Hi, I’m sorry but I don’t know what you are referring to. We don’t have a reference to essb_message_above_share in our code. Did you maybe mean to post this to another plugin’s support forum? It seems there are a few plugins with similar names.

    Plugin Author Idiom

    (@brianbrey)

    That is a great suggestion, and we will look into adding it in a future release.

    For now we have two filters ‘update_easy_social_share_title’ and ‘update_easy_social_share_description’ you can hook into, but every share button uses the same title and description. I’m not sure that would solve your particular problem.

    Thanks for downloading.

    Plugin Author Idiom

    (@brianbrey)

    Thanks for downloading. How the email share works depends on your browswer because we use a standard mailto link. Usually this will open your default mail client, or if you use gmail and have chrome configured to do so, it will open a browser window with a gmail compose email page. It sounds like maybe your browser doesn’t have a default mail client set in your settings.

    Plugin Author Idiom

    (@brianbrey)

    Thanks for downloading. We are unable to reproduce that behavior in a basic WordPress environment (2017 theme). Do you have any other details about your set up? Maybe try disabling other plugins to see if it might be effecting the sharing plugin?

    Plugin Author Idiom

    (@brianbrey)

    Thanks for using the plugin. Did you follow the steps for setting up an app and getting the app id on Facebook?

    – Go to https://developers.facebook.com/.
    – Log in using your existing Facebook account or create a new one.
    – Under “My Apps” in the header, select “Add a New App”.
    – Select “website”.
    – Choose a name for your new app.
    – Skip the quick set-up and go to your app\s dashboard. The App ID will be at the top under your app\s name.
    – Under “Settings”, fill in the fields for “Namespace”, “Contact Email”, and “Site URL”. Facebook sharing will not work unless the Site URL matches the url of your WordPress site.
    – Finally, go to “Status & Review” and click the button to make your app public.

    Plugin Author Idiom

    (@brianbrey)

    Hi, I’m sorry but I that is not our plugin. Are you sure you are in the right support forum? Our plugin does not have a file named get-noapi-counts.php.

    Plugin Author Idiom

    (@brianbrey)

    Great suggestion. We will look into adding this is our next update.

    Forum: Plugins
    In reply to: [Easy Load More] Events
    Plugin Author Idiom

    (@brianbrey)

    This is a great suggestion. We just added events for “elm-load”, “elm-lastPage”, and “elm-fail” to the latest version of the plugin (v1.0.2).

    Now you can do something like this $(document).on('elm-load', function () { */lazyLoad code here /* }); in your theme’s javascript.

    Plugin Author Idiom

    (@brianbrey)

    You almost have it there. If you put the load_more_button() function before wp_reset_postdata() it should work. Hope that helps!

    Plugin Author Idiom

    (@brianbrey)

    Thanks for downloading the plugin. Unfortunately, part of keeping the plugin simple and straightforward is that it only works on main queries (blog page, search, archive, or taxonomy pages) not custom WP_Queries that might be on the page. We currently do not have plans to implement that feature at this time.

    EDIT:

    One caveat to this is that the plugin will work for custom queries if you query the ‘paged’ query var in your template.

    
    <main id="main" class="site-main" role="main">
    <?php
    $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
    
    $args = array(
        'post_type' => 'book',
        'posts_per_page' => 4,
        'orderby'=> 'date',
        'order' => 'DESC',
        'paged' => $paged
    );
    
    $new_query = new WP_Query( $args );
    
    if ( $new_query->have_posts() ) :
    
    	/* Start the Loop */
    	while ( $new_query->have_posts() ) : $new_query->the_post();
    
    		get_template_part( 'template-parts/post/content', 'excerpt' );
    
    	endwhile;
    else :
    
    	get_template_part( 'template-parts/post/content', 'none' );
    
    endif;
    ?>
    
    </main><!-- #main -->
    
    <?php load_more_button(); ?>
    
    <?php wp_reset_postdata(); ?>
    

    If your custom page template followed this basic format, it will work. If you try to include other custom queries in the same template, however, it will most likely fail.

    • This reply was modified 7 years, 10 months ago by Idiom.
    Plugin Author Idiom

    (@brianbrey)

    Thank you for the suggestion. This has been implemented in the latest version of the plugin (v1.0.1).

Viewing 15 replies - 31 through 45 (of 152 total)